mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: h/HTSlib/HTSlib-1.9-intel-2017a.eb modified: o/OpenFOAM/OpenFOAM-6-foss-2018a.eb new file: r/R/MCMCpack-1.4-4_icpc-wd308.patch modified: r/R/R-3.5.3-intel-2017a.eb modified: s/SAMtools/SAMtools-1.9-intel-2017a.eb
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'BCFtools'
|
|
version = '1.9'
|
|
|
|
homepage = 'http://www.htslib.org/'
|
|
description = """Samtools is a suite of programs for interacting with high-throughput sequencing data.
|
|
BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence variants"""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2017a'}
|
|
toolchainopts = {'optarch': True, 'pic': True}
|
|
|
|
sources = [SOURCELOWER_TAR_BZ2]
|
|
source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s']
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11', '', True),
|
|
('HTSlib', '1.9'),
|
|
('GSL', '2.5'),
|
|
('XZ', '5.2.4', '', True),
|
|
]
|
|
|
|
parallel = 1
|
|
|
|
skipsteps = ['configure']
|
|
|
|
buildopts = 'CC="$CC" CFLAGS="$CFLAGS" USE_GSL=1'
|
|
installopts = ' prefix=%(installdir)s'
|
|
|
|
postinstallcmds = [
|
|
'mkdir -p %(installdir)s/lib/plugins',
|
|
'cp -a plugins/*.so %(installdir)s/lib/plugins/.',
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/%s' %
|
|
x for x in [
|
|
'bcftools',
|
|
'plot-vcfstats',
|
|
'vcfutils.pl']],
|
|
'dirs': ['lib/plugins'],
|
|
}
|
|
|
|
moduleclass = 'bio'
|