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.
- Loading branch information
Samuel Moors
committed
Oct 23, 2024
1 parent
df78ba5
commit 9cd879a
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/j/JACUSA2helper/JACUSA2helper-1.9.9.9675-foss-2023a.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,36 @@ | ||
easyblock = 'Bundle' | ||
|
||
name = 'JACUSA2helper' | ||
version = '1.9.9.9675' | ||
|
||
homepage = 'https://dieterich-lab.github.io/JACUSA2helper/' | ||
description = "Auxiliary R package for assessment of JACUSA2 results" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023a'} | ||
|
||
dependencies = [ | ||
('R', '4.3.2'), | ||
('R-bundle-CRAN', '2023.12'), | ||
('R-bundle-Bioconductor', '3.18', '-R-%(rver)s'), | ||
] | ||
|
||
exts_defaultclass = 'RPackage' | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'source_urls': ['https://github.com/dieterich-lab/JACUSA2helper/archive/refs/tags/'], | ||
'sources': 'v%(version)s.tar.gz', | ||
'checksums': ['5c8edb96a5691c7fb2895e50eb992ebe375f8d97234039da3f5540a7a9cb4816'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': [], | ||
'dirs': [name], | ||
} | ||
|
||
sanity_check_commands = ['Rscript -e "library(%(name)s)"'] | ||
|
||
modextrapaths = {'R_LIBS_SITE': ''} | ||
|
||
moduleclass = 'bio' |