# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild # Author: Pablo Escobar Lopez # Swiss Institute of Bioinformatics # Biozentrum - University of Basel # Modified by # Adam Huffman # The Francis Crick Institute easyblock = 'Tarball' name = 'MuTect' version = '1.1.4' versionsuffix = '-Java-%(javaver)s' homepage = 'http://www.broadinstitute.org/cancer/cga/mutect' description = """ MuTect is a method developed at the Broad Institute for the reliable and accurate identification of somatic point mutations in next generation sequencing data of cancer genomes. """ toolchain = SYSTEM # Need to be logged in to download, at this URL # http://www.broadinstitute.org/cancer/cga/mutect_download sources = ['muTect-%(version)s-bin.zip'] dependencies = [('Java', '1.7.0_80')] sanity_check_paths = { 'files': ["muTect-%(version)s.jar"], 'dirs': [], } modloadmsg = """ To start MuTect: java -jar \\$EBROOTMUTECT/muTect-%(version)s.jar """ moduleclass = 'bio'