ComputeVM: BEDTools-2.23.0-goolf-1.7.20.eb

File BEDTools-2.23.0-goolf-1.7.20.eb, 881 bytes (added by george, 9 years ago)
Line 
1# Author: Pablo Escobar Lopez
2# Swiss Institute of Bioinformatics (SIB)
3# Biozentrum - University of Basel
4
5easyblock = 'MakeCp'
6
7name = 'BEDTools'
8version = '2.23.0'
9
10homepage = "https://github.com/arq5x/bedtools2"
11description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
12 and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
13 and SAM/BAM."""
14
15toolchain = {'name': 'goolf', 'version': '1.7.20'}
16
17source_urls = ['https://github.com/arq5x/bedtools2/archive/']
18sources = ['v%(version)s.tar.gz']
19
20buildopts = 'CXX="$CXX"'
21
22files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
23
24sanity_check_paths = {
25    'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed','bedToBam','fastaFromBed']],
26    'dirs': files_to_copy,
27}
28
29moduleclass = 'bio'