Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{bio}[GCCcore/8.3.0] Varlociraptor v1.5.0 #9491

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# This easyconfig was created by Christian Meesters of the HPC team at the Johannes Gutenberg University of Mainz.
easyblock = 'Binary'

name = 'Varlociraptor'
version = "1.5.0"

homepage = 'https://varlociraptor.github.io/'
description = """Varlociraptor is a Flexible, uncertainty-aware variant calling program
with parameter free filtration via FDR control.

Key Features include:
- Calls SNVs and indels in all length ranges (from small to structural) with a unified statistical model.
- The statistical model entails all possible sources of uncertainty.
- Resulting variant calls can be filtered by false discovery rate. No parameter tuning necessary.
- Maximum a posteriori allele frequency estimates are provided with each call.
"""

toolchain = {'name': 'GCCcore', 'version': '8.3.0'}

source_urls = ['https://github.com/varlociraptor/varlociraptor/archive']
sources = ['v%(version)s.tar.gz']
checksums = []
builddependencies = [
('binutils', '2.32'),
('Rust', '1.37.0'),
('Clang', '9.0.1'),
('zlib', '1.2.11'),
('XZ', '5.2.4'),
]

dependencies = [
('GSL', '2.6'),
]

extract_sources = True

install_cmd = "cargo install --root %(installdir)s --path ."

sanity_check_paths = {
'files': ['bin/%(namelower)s'],
'dirs': [],
}

sanity_check_commands = ["%(namelower)s --help"]

moduleclass = 'bio'