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.
adding easyconfigs: RAxML-NG-1.2.2-GCC-13.2.0.eb
- Loading branch information
sassy
committed
Nov 5, 2024
1 parent
58d9f6c
commit 2f64686
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-1.2.2-GCC-13.2.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,44 @@ | ||
# EasyBuild easyconfig | ||
# | ||
# Contributed from Fred Hutchinson Cancer Research Center, Seattle WA, US | ||
# John Dey [email protected] | ||
# | ||
easyblock = 'CMakeMake' | ||
|
||
name = 'RAxML-NG' | ||
version = '1.2.2' | ||
|
||
homepage = 'https://github.com/amkozlov/raxml-ng' | ||
description = """RAxML-NG is a phylogenetic tree inference tool which uses maximum-likelihood (ML) | ||
optimality criterion. Its search heuristic is based on iteratively performing a series of Subtree | ||
Pruning and Regrafting (SPR) moves, which allows to quickly navigate to the best-known ML tree.""" | ||
|
||
toolchain = {'name': 'GCC', 'version': '13.2.0'} | ||
|
||
sources = [{ | ||
'filename': '%(version)s.tar.gz', | ||
'git_config': { | ||
'url': 'https://github.com/amkozlov', | ||
'repo_name': '%(namelower)s', | ||
'tag': '%(version)s', | ||
'recursive': True, | ||
'keep_git_dir': True, | ||
} | ||
}] | ||
checksums = [None] | ||
|
||
builddependencies = [ | ||
('CMake', '3.27.6'), | ||
('Bison', '3.8.2'), | ||
('flex', '2.6.4'), | ||
('GMP', '6.3.0'), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/raxml-ng'], | ||
'dirs': [], | ||
} | ||
|
||
sanity_check_commands = ["raxml-ng --help"] | ||
|
||
moduleclass = 'bio' |