-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(docker): add checkm2 docker image * feat(magAttributes): add checkm2 process * doc(magAttributes): add checkm2 documentation * feat(config): add checkm2 parameters * feat(magAttributes): add checkm2 tests * fix(magAttributes): allow emgb script to search for checkm2 results * fix(aggregation): cleanup output directory of previous runs * fix(magAttributes): create yaml for db tests in work dir * fix(magAttributes): create secrets for checkm2 tests * fix(magAttributes): set missing credentials * fix(magAttributes): set missing checkm2 secrets variable * fix(magAttributes): add missing secrets tag for checkm2
- Loading branch information
Showing
14 changed files
with
203 additions
and
69 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,14 @@ | ||
FROM ubuntu:focal | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update \ | ||
&& apt install -y git python3-pip prodigal diamond-aligner wget \ | ||
&& pip3 install setuptools wheel requests packaging tqdm \ | ||
&& pip3 install protobuf==3.20.* scikit-learn==0.23.2 h5py==2.10.0 numpy==1.19.2 tensorflow==2.5.0 lightgbm==3.2.1 pandas==1.4.0 scipy==1.8.0 | ||
|
||
ENV CHECKM2_VERSION=1.0.2 | ||
|
||
RUN git clone -b $CHECKM2_VERSION --recursive https://github.com/chklovski/checkm2.git && cd checkm2 \ | ||
&& python3 setup.py install | ||
|
||
ENV PATH="$HOME/.local/bin:$PATH" |
This file contains 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 @@ | ||
1.0.2-1 |
This file contains 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
This file contains 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
Oops, something went wrong.