-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: manta-1.6.0-gompi-2023a-Python-2.7.18.eb
- Loading branch information
software
committed
Dec 17, 2024
1 parent
f411b0e
commit 139971e
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
easybuild/easyconfigs/m/manta/manta-1.6.0-gompi-2023a-Python-2.7.18.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,51 @@ | ||
easyblock = 'CMakeMake' | ||
|
||
name = 'manta' | ||
version = '1.6.0' | ||
versionsuffix = '-Python-%(pyver)s' | ||
|
||
homepage = 'https://github.com/Illumina/manta' | ||
description = """ | ||
Manta calls structural variants (SVs) and indels from mapped paired-end sequencing reads. | ||
It is optimized for analysis of germline variation in small sets of individuals and | ||
somatic variation in tumor/normal sample pairs. Manta discovers, assembles and | ||
scores large-scale SVs, medium-sized indels and large insertions within a | ||
single efficient workflow. | ||
""" | ||
|
||
toolchain = {'name': 'gompi', 'version': '2023a'} | ||
|
||
github_account = 'Illumina' | ||
source_urls = [GITHUB_LOWER_SOURCE] | ||
sources = ['v%(version)s.tar.gz'] | ||
checksums = ['76ce7c4a95a3b92cb16381f9a3b091afa234948ae6f028982abbd49e21206421'] | ||
|
||
builddependencies = [ | ||
('CMake', '3.26.3'), | ||
('Doxygen', '1.9.7'), | ||
] | ||
|
||
dependencies = [ | ||
('Python', '2.7.18'), | ||
('Boost', '1.75.0'), | ||
('zlib', '1.2.13'), | ||
] | ||
|
||
local_binaries = ['CheckSVLoci', 'DumpSVLoci', 'EstimateSVLoci', 'GenerateSVCandidates', 'GetAlignmentStats', | ||
'GetChromDepth', 'MergeAlignmentStats', 'MergeSVLoci', 'SummarizeAlignmentStats', 'SummarizeSVLoci', | ||
'TestAssembler'] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/%s' % x for x in ['configManta.py', 'runMantaWorkflowDemo.py']] + | ||
['libexec/%s' % x for x in local_binaries], | ||
'dirs': ['lib/python', 'share'], | ||
} | ||
|
||
sanity_check_commands = ['cd "$(mktemp -d)" && runMantaWorkflowDemo.py'] | ||
|
||
modextrapaths = { | ||
'PATH': 'libexec', | ||
'PYTHONPATH': 'lib/python', | ||
} | ||
|
||
moduleclass = 'bio' |