Skip to content

Commit

Permalink
Fix mafft dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
aghozlane committed Oct 18, 2024
1 parent 7e0eecd commit 9e9aa89
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
- uses: actions/checkout@v4
- uses: ConorMacBride/install-package@v1
with:
brew: bowtie2 freebayes
apt: bowtie2 freebayes
brew: bowtie2 freebayes mafft
apt: bowtie2 freebayes mafft
- name: Install Python
uses: actions/setup-python@v4
- name: Install poetry
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Besides python packages dependencies, Meteor requires:
- python 3.10+
- [bowtie2 2.3.5+](https://github.com/BenLangmead/bowtie2)
- [freebayes 1.3.6+](https://github.com/freebayes/freebayes)
- [mafft 7.407+](https://mafft.cbrc.jp/alignment/software/)
- [mafft 7.487+](https://mafft.cbrc.jp/alignment/software/)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion conda_recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ requirements:
- biom-format
- py-bgzip
- freebayes >=1.3.6
- mafft >=7.407
- mafft >=7.487
test:
commands:
- meteor -h
Expand Down
2 changes: 1 addition & 1 deletion meteor/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Component:

MIN_BOWTIE2_VERSION: ClassVar[Version] = Version("2.3.5")
MIN_FREEBAYES_VERSION: ClassVar[Version] = Version("1.3.6")
MIN_MAFFT_VERSION: ClassVar[Version] = Version("7.407")
MIN_MAFFT_VERSION: ClassVar[Version] = Version("7.487")
DEFAULT_GAP_CHAR: ClassVar[str] = "N"
DEFAULT_CORE_SIZE: ClassVar[int] = 100

Expand Down

0 comments on commit 9e9aa89

Please sign in to comment.