Skip to content

Commit

Permalink
adding easyconfigs: RAxML-NG-1.2.2-GCC-13.2.0.eb
Browse files Browse the repository at this point in the history
  • Loading branch information
sassy committed Nov 5, 2024
1 parent 58d9f6c commit 2f64686
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-1.2.2-GCC-13.2.0.eb
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'

0 comments on commit 2f64686

Please sign in to comment.