Skip to content

Commit

Permalink
Merge branch 'master' into issue_377
Browse files Browse the repository at this point in the history
  • Loading branch information
baileythegreen authored Mar 29, 2022
2 parents 2acee92 + 6d669d1 commit 9108d01
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -r requirements-pip.txt
pip install -r requirements-pyqt-pip.txt
- save_cache:
paths:
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ setup_env:
@conda install --file requirements.txt --yes
@conda install --file requirements-thirdparty.txt --yes
@conda install --file requirements-fastani.txt --yes
@conda install --file requirements-pyqt-conda.txt --yes
@pip install -r requirements-pip.txt
@pre-commit install
@pip install -U -e .
Expand Down
2 changes: 2 additions & 0 deletions pyani/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
from .anib import get_version as get_blast_version
from .aniblastall import get_version as get_blastall_version
from .anim import get_version as get_nucmer_version
from .fastani import get_version as get_fastani_version

# Dict of dependencies that support pyani
REQUIREMENTS = [
Expand Down Expand Up @@ -113,5 +114,6 @@ def get_tool_versions() -> Generator:
("blast+", get_blast_version),
("nucmer", get_nucmer_version),
("blastall", get_blastall_version),
("fastani", get_fastani_version),
]:
yield (name, func())
3 changes: 3 additions & 0 deletions requirements-pyqt-conda.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ete3
pyqt

2 changes: 2 additions & 0 deletions requirements-pyqt-pip.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ete3
PyQt5
2 changes: 0 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
biopython
ete3
matplotlib
namedlist
networkx
numpy
openpyxl
pandas
Pillow
PyQt5
scipy
seaborn
sqlalchemy
Expand Down

0 comments on commit 9108d01

Please sign in to comment.