Skip to content
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

MAINT: move CheckM action to a brand new plugin (q2-checkm) #17

Merged
merged 1 commit into from
Jul 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,9 @@ test-cov: all
coverage xml

install: all
bash install-pplacer.sh
pip install git+https://github.com/Ecogenomics/CheckM.git@d74bb68d48b2318542eb7137343196d8e12b4fac
$(PYTHON) setup.py install

dev: all
bash install-pplacer.sh
pip install git+https://github.com/Ecogenomics/CheckM.git@d74bb68d48b2318542eb7137343196d8e12b4fac
pip install -e .

clean: distclean
Expand Down
13 changes: 1 addition & 12 deletions ci/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,37 +9,26 @@ source:
path: ../..

build:
script: |
make VERBOSE=1
make install
script: make install

requirements:
host:
- python {{ python }}
- setuptools

run:
- altair
- hmmer
- matplotlib
- metabat2
- numpy
- prodigal
- pysam
- samtools
- qiime2 {{ qiime2_epoch }}.*
- q2-types-genomics {{ qiime2_epoch }}.*
- q2templates {{ qiime2_epoch }}.*

test:
requires:
- coverage
- pytest-cov

imports:
- q2_moshpit
- qiime2.plugins.moshpit

commands:
- pytest --cov q2_moshpit --pyargs q2_moshpit

Expand Down
53 changes: 0 additions & 53 deletions install-pplacer.sh

This file was deleted.

3 changes: 1 addition & 2 deletions q2_moshpit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------

from .checkm import checkm
from .metabat2 import metabat2

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions

__all__ = ['checkm', 'metabat2']
__all__ = ['metabat2']
56 changes: 0 additions & 56 deletions q2_moshpit/_action_params.py

This file was deleted.

20 changes: 0 additions & 20 deletions q2_moshpit/assets/checkm/css/styles.css

This file was deleted.

132 changes: 0 additions & 132 deletions q2_moshpit/assets/checkm/gc_plots.html

This file was deleted.

Loading