mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
43 lines
978 B
Plaintext
43 lines
978 B
Plaintext
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
|
|
# Author: Pablo Escobar Lopez
|
|
# sciCORE - University of Basel
|
|
# SIB Swiss Institute of Bioinformatics
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'VCFtools'
|
|
version = '0.1.14'
|
|
versionsuffix = '-Perl-%(perlver)s'
|
|
|
|
homepage = 'https://vcftools.github.io/'
|
|
description = """A set of tools written in Perl and C++ for working with VCF files."""
|
|
|
|
toolchain = {'name': 'goolf', 'version': '1.4.10'}
|
|
|
|
source_urls = [
|
|
'https://github.com/vcftools/vcftools/releases/download/v%(version)s/']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
dependencies = [
|
|
('Perl', '5.16.3'),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
"bin/%s" %
|
|
x for x in [
|
|
"vcftools",
|
|
"fill-fs",
|
|
"vcf-local_compare",
|
|
"vcf-contrast",
|
|
"vcf-fix-ploidy",
|
|
"vcf-merge"]],
|
|
'dirs': [],
|
|
}
|
|
|
|
modextrapaths = {
|
|
'PERL5LIB': 'lib/perl5/site_perl/',
|
|
}
|
|
|
|
moduleclass = 'bio'
|