forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request easybuilders#18773 from maxim-masterov/VCFtools_2023a
{bio}[GCC/12.3.0] VCFtools v0.1.16
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
easybuild/easyconfigs/v/VCFtools/VCFtools-0.1.16-GCC-12.3.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'VCFtools' | ||
version = '0.1.16' | ||
|
||
homepage = 'https://vcftools.github.io' | ||
description = """The aim of VCFtools is to provide | ||
easily accessible methods for working with complex | ||
genetic variation data in the form of VCF files.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://github.com/%(namelower)s/%(namelower)s/releases/download/v%(version)s/'] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['dbfc774383c106b85043daa2c42568816aa6a7b4e6abc965eeea6c47dde914e3'] | ||
|
||
builddependencies = [ | ||
('pkgconf', '1.9.5'), | ||
] | ||
dependencies = [ | ||
('Perl', '5.36.1'), | ||
('HTSlib', '1.18'), | ||
('zlib', '1.2.13'), | ||
] | ||
|
||
|
||
sanity_check_paths = { | ||
'files': ['bin/%(namelower)s', 'bin/vcf-sort', 'bin/vcf-stats'], | ||
'dirs': [], | ||
} | ||
|
||
modextrapaths = {'PERL5LIB': 'lib/perl5/site_perl'} | ||
|
||
moduleclass = 'bio' |