From a3d934929cab9a24f1854c35be3064bfab783dda Mon Sep 17 00:00:00 2001 From: Thomas Hoffmann Date: Tue, 10 Oct 2023 12:38:51 +0200 Subject: [PATCH] {bio}[foss/2022a] starparser-1.49-foss-2022a.eb --- .../starparser/starparser-1.49-foss-2022a.eb | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 easybuild/easyconfigs/s/starparser/starparser-1.49-foss-2022a.eb diff --git a/easybuild/easyconfigs/s/starparser/starparser-1.49-foss-2022a.eb b/easybuild/easyconfigs/s/starparser/starparser-1.49-foss-2022a.eb new file mode 100644 index 00000000000..692bab05fe1 --- /dev/null +++ b/easybuild/easyconfigs/s/starparser/starparser-1.49-foss-2022a.eb @@ -0,0 +1,42 @@ +# Thomas Hoffmann, EMBL Heidelberg, structures-it@embl.de, 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'