-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathont-fast5-api-4.1.3-foss-2024a.eb
More file actions
46 lines (36 loc) · 1.05 KB
/
ont-fast5-api-4.1.3-foss-2024a.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.3'
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': '2024a'}
dependencies = [
('Python', '3.12.3'),
('SciPy-bundle', '2024.05'),
('h5py', '3.12.1'),
]
exts_list = [
('progressbar33', '2.4', {
'modulename': 'progressbar',
'checksums': ['51fe0d9b3b4023db2f983eeccdfc8c9846b84db8443b9bee002c7f58f4376eff'],
}),
(name, version, {
'checksums': ['302d10ed87b439f8f22c2c06d45d68d017e47dd8df9bd48f155cad041f464b68'],
}),
]
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'