forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MUMmer-4.0.0rc1-GCCcore-10.3.0.eb
- Loading branch information
IBU Software Devel
committed
May 22, 2024
1 parent
cc0a80e
commit 67301fd
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/m/MUMmer/MUMmer-4.0.0rc1-GCCcore-10.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,36 @@ | ||
# EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
# Author: Pablo Escobar Lopez | ||
# sciCORE - University of Basel | ||
# SIB Swiss Institute of Bioinformatics | ||
|
||
easyblock = 'ConfigureMake' | ||
|
||
name = 'MUMmer' | ||
version = '4.0.0rc1' | ||
|
||
homepage = 'http://mummer.sourceforge.net/' | ||
|
||
description = """ | ||
MUMmer is a system for rapidly aligning entire genomes, | ||
whether in complete or draft form. AMOS makes use of it. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '10.3.0'} | ||
toolchainopts = {'openmp': True} | ||
|
||
source_urls = ['https://github.com/gmarcais/mummer/releases/download/v%(version)s/'] | ||
sources = ['%(namelower)s-%(version)s.tar.gz'] | ||
checksums = ['85006adb2d6539c2f738c3e3bb14b58bb6f62cd6c6ca5ede884a87ae76e07d1d'] | ||
|
||
builddependencies = [('binutils', '2.36.1')] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/mummer', 'bin/annotate', 'bin/combineMUMs', 'bin/delta-filter', | ||
'bin/repeat-match', 'bin/show-aligns', 'bin/show-coords', | ||
'bin/show-tiling', 'bin/show-snps', 'bin/show-diff', 'bin/exact-tandems', | ||
'bin/mummerplot', 'bin/promer', 'bin/dnadiff', | ||
], | ||
'dirs': ['include', 'lib', 'libexec'], | ||
} | ||
|
||
moduleclass = 'bio' |