Skip to content

Commit

Permalink
Update phylogeny.py
Browse files Browse the repository at this point in the history
Raxml-ng is not available with version 1.0.0 in bioconda. We should ask for the version 1.0.1 (available in bioconda)
  • Loading branch information
aghozlane authored Apr 23, 2024
1 parent a4032d2 commit 1f97708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meteor/phylogeny.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ def execute(self) -> None:
logging.error("Failed to determine the raxml-ng version.")
sys.exit(1)
raxml_ng_version = match.group(1)
if parse(raxml_ng_version) < Version("1.0.0"):
if parse(raxml_ng_version) < Version("1.0.1"):
logging.error(

Check warning on line 124 in meteor/phylogeny.py

View check run for this annotation

Codecov / codecov/patch

meteor/phylogeny.py#L121-L124

Added lines #L121 - L124 were not covered by tests
"The raxml-ng version %s is outdated for meteor. Please update raxml-ng to >=1.0.0.",
"The raxml-ng version %s is outdated for meteor. Please update raxml-ng to >=1.0.1.",
raxml_ng_version,
)
sys.exit(1)

Check warning on line 128 in meteor/phylogeny.py

View check run for this annotation

Codecov / codecov/patch

meteor/phylogeny.py#L128

Added line #L128 was not covered by tests
Expand Down

0 comments on commit 1f97708

Please sign in to comment.