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.
Merge branch 'easybuilders:develop' into 20231107134338_new_pr_cryoCA…
…RE030
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
easybuild/easyconfigs/m/mrcfile/mrcfile-1.4.3-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,40 @@ | ||
# Thomas Hoffmann, EMBL Heidelberg, [email protected], 2022/11 | ||
easyblock = 'PythonPackage' | ||
name = 'mrcfile' | ||
version = '1.4.3' | ||
homepage = 'https://github.com/ccpem/mrcfile' | ||
description = """mrcfile is a Python implementation of the MRC2014 file format, which is used in | ||
structural biology to store image and volume data. | ||
It allows MRC files to be created and opened easily using a very simple API, | ||
which exposes the file’s header and data as numpy arrays. The code runs in | ||
Python 2 and 3 and is fully unit-tested. | ||
This library aims to allow users and developers to read and write standard- | ||
compliant MRC files in Python as easily as possible, and with no dependencies on | ||
any compiled libraries except numpy. You can use it interactively to inspect | ||
files, correct headers and so on, or in scripts and larger software packages to | ||
provide basic MRC file I/O functions. """ | ||
|
||
|
||
toolchain = {'name': 'foss', 'version': '2022a'} | ||
|
||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['43c358c59ff8f583fc4dc2079a0099028719109ebf92066e388772bab389c5f5'] | ||
|
||
dependencies = [ | ||
('Python', '3.10.4'), | ||
('SciPy-bundle', '2022.05'), | ||
] | ||
|
||
download_dep_fail = True | ||
sanity_pip_check = True | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': ['lib/python%(pyshortver)s/site-packages/%(namelower)s'] | ||
} | ||
|
||
|
||
use_pip = True | ||
moduleclass = 'bio' |