mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-10 17:02:11 +01:00
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'BCFtools'
|
|
version = '1.8'
|
|
|
|
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']
|
|
|
|
#patches = ['BCFtools-%(version)s_extHTSlib_Makefile.patch']
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11', '', True),
|
|
('HTSlib', '1.8'),
|
|
('GSL', '2.3'),
|
|
('XZ', '5.2.3', '', 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'
|