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] cryoCARE v0.3.0 /w CUDA 11.7.0
- Loading branch information
1 parent
c757d75
commit 209f247
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
easybuild/easyconfigs/c/cryoCARE/cryoCARE-0.3.0-foss-2022a-CUDA-11.7.0.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,62 @@ | ||
# Thomas Hoffmann, EMBL Heidelberg, [email protected], 2023/11 | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'cryoCARE' | ||
version = '0.3.0' | ||
versionsuffix = '-CUDA-%(cudaver)s' | ||
|
||
homepage = 'https://github.com/juglab/cryoCARE_pip' | ||
description = """This package is a memory efficient implementation of cryoCARE. | ||
This setup trains a denoising U-Net for tomographic reconstruction according to | ||
the Noise2Noise training paradigm. Therefore the user has to provide two | ||
tomograms of the same sample. The simplest way to achieve this is with direct- | ||
detector movie-frames. | ||
You can use Warp to generate two reconstructed tomograms based on the even/odd | ||
frames. Alternatively, the movie-frames can be split in two halves (e.g. with | ||
MotionCor2 -SplitSum 1 or with IMOD alignframes -debug 10000) from which two | ||
identical, up to random noise, tomograms can be reconstructed. | ||
These two (even and odd) tomograms can be used as input to this cryoCARE | ||
implementation.""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2022a'} | ||
|
||
|
||
dependencies = [ | ||
('Python', '3.10.4'), | ||
('CUDA', '11.7.0', '', True), | ||
('SciPy-bundle', '2022.05'), | ||
('TensorFlow', '2.11.0', versionsuffix), | ||
('mrcfile', '1.4.3'), | ||
('tqdm', '4.64.0'), | ||
('matplotlib', '3.5.2'), | ||
('CSBDeep', '0.7.4'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
('tifffile', '2022.10.10', { | ||
'checksums': ['50b61ba943b866d191295bc38a00191c9fdab23ece063544c7f1a264e3f6aa8e'], | ||
}), | ||
(name, version, { | ||
'patches': ['%(name)s-%(version)s_relax_requirements.patch'], | ||
'checksums': [ | ||
{'cryoCARE-0.3.0.tar.gz': '8885aeb03d1731de1958463bbf766fa9999f4480d71c3af09f711ee210ab9886'}, | ||
{'cryoCARE-0.3.0_relax_requirements.patch': | ||
'a44814f6e568f5fb618cf789d21a6b5714fbda78b4170ec8e868e50fb0f2a5c0'}, | ||
], | ||
}), | ||
] | ||
|
||
sanity_check_commands = [ | ||
'cryoCARE_extract_train_data.py --help', | ||
'cryoCARE_train.py --help', | ||
'cryoCARE_predict.py --help', | ||
] | ||
|
||
moduleclass = 'bio' | ||
|