forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
{bio}[foss/2022a] starparser-1.49-foss-2022a.eb
- Loading branch information
1 parent
c010dfe
commit a3d9349
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
easybuild/easyconfigs/s/starparser/starparser-1.49-foss-2022a.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Thomas Hoffmann, EMBL Heidelberg, [email protected], 2023/10 | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'starparser' | ||
version = '1.49' | ||
|
||
homepage = 'https://github.com/sami-chaaban/starparser' | ||
description = """Use this package to manipulate Relion star files, including counting, modifying, | ||
plotting, and sifting the data. At the very least, this is a useful alternative | ||
to awk commands, which can get awkward. Below is a description of the command- | ||
line options with some examples. Alternatively, use starparser within Relion or | ||
load the modules in your own Python scripts.""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2022a'} | ||
use_pip = True | ||
|
||
builddependencies = [ | ||
('binutils', '2.38'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '3.10.4'), | ||
('SciPy-bundle', '2022.05'), | ||
('matplotlib', '3.5.2'), | ||
] | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'checksums': ['6d7e2c11d1887970b66c08b2b7876a210f9c544cf13580320e841fb587167a68'], | ||
}), | ||
] | ||
|
||
sanity_pip_check = True | ||
|
||
sanity_check_commands = ['starparser -h'] | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s'], | ||
} | ||
|
||
moduleclass = 'bio' |