-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathont-fast5-api-4.1.2-foss-2023a.eb
More file actions
46 lines (36 loc) · 1.05 KB
/
ont-fast5-api-4.1.2-foss-2023a.eb
File metadata and controls
46 lines (36 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
easyblock = 'PythonBundle'
name = 'ont-fast5-api'
version = '4.1.2'
homepage = 'https://github.com/nanoporetech/ont_fast5_api'
description = "ont_fast5_api is a simple interface to HDF5 files of the Oxford Nanopore .fast5 file format."
toolchain = {'name': 'foss', 'version': '2023a'}
dependencies = [
('Python', '3.11.3'),
('SciPy-bundle', '2023.07'),
('h5py', '3.9.0'),
]
exts_list = [
('progressbar33', '2.4', {
'modulename': 'progressbar',
'checksums': ['51fe0d9b3b4023db2f983eeccdfc8c9846b84db8443b9bee002c7f58f4376eff'],
}),
(name, version, {
'checksums': ['c7c59c6100e992ef8bc239cdf91f7a8ab46abf57ecd689f94b2b98e72a9e9472'],
}),
]
sanity_check_paths = {
'files': [
'bin/compress_fast5',
'bin/fast5_subset',
'bin/multi_to_single_fast5',
'bin/single_to_multi_fast5'
],
'dirs': [''],
}
sanity_check_commands = [
"compress_fast5 --help",
"fast5_subset --help",
"multi_to_single_fast5 --help",
"single_to_multi_fast5 --help",
]
moduleclass = 'bio'