-
Notifications
You must be signed in to change notification settings - Fork 772
{bio}[foss/2019b] RAxML-NG v0.9.0 #9990
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
Merged
migueldiascosta
merged 15 commits into
easybuilders:develop
from
albertogfernan:20200305104642_new_pr_RAxML-NG090
Mar 27, 2020
Merged
Changes from 4 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
d0a7d2a
adding easyconfigs: RAxML-NG-0.9.0-foss-2019b.eb
8e67cd6
Adding dependency easyconfig file gtest-1.8.1-GCCcore-8.3.0.eb
2d6da0e
Adding checksum for downloaded file in RAxML-NG-0.9.0-foss-2019b.eb
cb54225
Reformatting to comply with PEP8 after checking with eb --check-contrib
d8a4a34
Using gompi instead of foss as toolchain; Direct download from github…
fd1048e
Minor modification to avoid style error W503: line break before binar…
b280aed
Reordering lines for readability; Checksums commented; Local vars ren…
882acd6
Update easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-0.9.0-gompi-2019b.eb
albertogfernan 289af37
Update easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-0.9.0-gompi-2019b.eb
albertogfernan 542a41a
Update easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-0.9.0-gompi-2019b.eb
albertogfernan 3938c5b
Switching gtest to 1.10.0 version
f803a00
Remove old version of gtest; Minor style changes;
a4d7151
Style changes lost in control version;
f333004
Merge branch 'develop' of https://github.com/easybuilders/easybuild-e…
migueldiascosta f6cdb57
Reordering clauses
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
easybuild/easyconfigs/g/gtest/gtest-1.8.1-GCCcore-8.3.0.eb
This file contains hidden or 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,25 @@ | ||
| easyblock = "CMakeMake" | ||
|
|
||
| name = 'gtest' | ||
| version = '1.8.1' | ||
|
|
||
| homepage = 'https://github.com/google/googletest' | ||
| description = "Google's framework for writing C++ tests on a variety of platforms" | ||
|
|
||
| toolchain = {'name': 'GCCcore', 'version': '8.3.0'} | ||
|
|
||
| source_urls = ['https://github.com/google/googletest/archive/'] | ||
| sources = ['release-%(version)s.tar.gz'] | ||
| checksums = ['9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c'] | ||
|
|
||
| builddependencies = [ | ||
| ('CMake', '3.15.3'), | ||
| ('binutils', '2.32'), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['lib/libgtest.a', 'lib/libgmock.a'], | ||
| 'dirs': ['include'], | ||
| } | ||
|
|
||
| moduleclass = 'devel' |
56 changes: 56 additions & 0 deletions
56
easybuild/easyconfigs/r/RAxML-NG/RAxML-NG-0.9.0-foss-2019b.eb
This file contains hidden or 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,56 @@ | ||
| easyblock = 'CMakeMakeCp' | ||
|
|
||
| name = 'RAxML-NG' | ||
| version = '0.9.0' | ||
|
|
||
| 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': 'foss', 'version': '2019b'} | ||
|
|
||
| sources = [{ | ||
| 'filename': 'raxml-ng-%(version)s.tar.gz', | ||
| 'git_config': { | ||
| 'url': 'https://github.com/amkozlov', | ||
albertogfernan marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 'repo_name': 'raxml-ng', | ||
| 'tag': '0.9.0', | ||
| 'recursive': True, | ||
| }, | ||
| }] | ||
| checksums = [ | ||
| '4cfaff3d474ea31a6fcc9968b18730c69171f925403a9479735d2cd928115861' | ||
| ] | ||
|
|
||
| build_type = 'Release' | ||
|
|
||
| builddependencies = [ | ||
| ('binutils', '2.32'), | ||
| ('CMake', '3.15.3'), | ||
| ('gtest', '1.8.1'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('flex', '2.6.4'), | ||
| ('Bison', '3.3.2'), | ||
| ('GMP', '6.1.2'), | ||
| ('OpenMPI', '3.1.4'), | ||
albertogfernan marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ] | ||
|
|
||
| configopts = '-DUSE_MPI=ON ' | ||
| configopts += '-DUSE_GMP=ON ' | ||
|
|
||
| files_to_copy = [ | ||
| (["bin/raxml-ng-mpi"], "bin"), | ||
| ] | ||
|
|
||
| sanity_check_paths = { | ||
| 'files': ['bin/raxml-ng-mpi'], | ||
| 'dirs': [], | ||
| } | ||
|
|
||
| separate_build_dir = True | ||
|
|
||
| moduleclass = 'bio' | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.