-
Notifications
You must be signed in to change notification settings - Fork 710
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21865 from lexming/20241118142101_new_pr_snpEff52c
{bio}[GCCcore/12.3.0] snpEff v5.2c w/ Java 11
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
easybuild/easyconfigs/s/snpEff/snpEff-5.2c-GCCcore-12.3.0-Java-11.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,37 @@ | ||
easyblock = 'Tarball' | ||
|
||
name = 'snpEff' | ||
version = '5.2c' | ||
versionsuffix = '-Java-%(javaver)s' | ||
|
||
homepage = 'https://pcingola.github.io/SnpEff/' | ||
description = """SnpEff is a variant annotation and effect prediction tool. | ||
It annotates and predicts the effects of genetic variants (such as amino acid changes).""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://snpeff.blob.core.windows.net/versions/'] | ||
sources = ['%%(name)s_v%s_core.zip' % version.replace('.', '_')] | ||
checksums = ['9926f600662707e85478940abc283ef120a909f1d41c32a036f01d958cd51232'] | ||
|
||
dependencies = [ | ||
# ignore website claim that Java 12+ is required, nothing is compiled for | ||
# anything newer than Java 11 | ||
('Java', '11', '', SYSTEM), | ||
('Python', '3.11.3'), | ||
('Perl', '5.36.1'), | ||
] | ||
|
||
fix_perl_shebang_for = ['scripts/*.pl'] | ||
fix_python_shebang_for = ['scripts/*.py'] | ||
|
||
sanity_check_paths = { | ||
'files': ['%(name)s.jar', 'SnpSift.jar', 'scripts/%(name)s'], | ||
'dirs': [], | ||
} | ||
|
||
sanity_check_commands = ["%(name)s -version"] | ||
|
||
modextrapaths = {'PATH': 'scripts'} | ||
|
||
moduleclass = 'bio' |