ComputeVM: GATK-3.3-0-Java-1.7.0_21.eb

File GATK-3.3-0-Java-1.7.0_21.eb, 1.0 KB (added by george, 9 years ago)
Line 
1name = 'GATK'
2version = '3.3-0'
3
4homepage = 'http://www.broadinstitute.org/gatk/'
5description = """The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute
6 to analyse next-generation resequencing data. The toolkit offers a wide variety of tools,
7 with a primary focus on variant discovery and genotyping as well as strong emphasis on
8 data quality assurance. Its robust architecture, powerful processing engine and
9 high-performance computing features make it capable of taking on projects of any size."""
10
11toolchain = {'name': 'dummy', 'version': 'dummy'}
12easyblock = 'Tarball'
13
14# download manually from http://www.broadinstitute.org/gatk/download
15sources = ['GenomeAnalysisTK-%(version)s.tar.bz2']
16
17java = 'Java'
18javaver = '1.7.0_76'
19versionsuffix = '-%s-%s' % (java, javaver)
20dependencies = [(java, javaver)]
21
22modloadmsg = """To execute GATK run: java -jar \\${EBROOTGATK}/GenomeAnalysisTK.jar"""
23
24sanity_check_paths = {
25    'files': ["GenomeAnalysisTK.jar"],
26    'dirs': ["resources"],
27}
28
29moduleclass = 'bio'