From 50ccd8ba456a0b16b00522bacdb72153743fdfa0 Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Wed, 10 Jul 2024 14:58:49 +0000 Subject: [PATCH 01/10] add genoflu --- genoflu/1.0.3/Dockerfile | 51 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 genoflu/1.0.3/Dockerfile diff --git a/genoflu/1.0.3/Dockerfile b/genoflu/1.0.3/Dockerfile new file mode 100644 index 000000000..9a168edfe --- /dev/null +++ b/genoflu/1.0.3/Dockerfile @@ -0,0 +1,51 @@ +FROM mambaorg/micromamba:1.5.8 as app + +USER root +WORKDIR / + +ARG GENOFLU_VER="1.0.3" + +# LABEL instructions tag the image with metadata that might be important to the user +LABEL base.image="micromamba:1.5.8" +LABEL dockerfile.version="1" +LABEL software="genoflu" +LABEL software.version=$GENOFLU_VER +LABEL description="Uses BLAST to detect whole-genome flu genotype" +LABEL website="https://github.com/USDA-VS/GenoFLU" +LABEL license="https://github.com/USDA-VS/GenoFLU/blob/main/LICENSE" +LABEL maintainer="Sage Wright" +LABEL maintainer.email="sagemwright@gmail.com" + +# Install dependencies via apt-get; cleanup apt garbage +RUN apt-get update && apt-get install -y --no-install-recommends \ + wget \ + ca-certificates \ + procps && \ + apt-get autoclean && rm -rf /var/lib/apt/lists/* + +# install genoflu via bioconda; install into 'base' conda env +RUN micromamba install --yes --name base --channel conda-forge --channel bioconda \ + genoflu=${GENOFLU_VER} && \ + micromamba clean --all --yes + + +# ENV instructions set environment variables that persist from the build into the resulting image +# hardcode 'base' env bin into PATH, so conda env does not have to be "activated" at run time +ENV PATH="/opt/conda/bin:${PATH}" + +# WORKDIR sets working directory +WORKDIR /data + +# default command is to pull up help options for genoflu +CMD [ "genoflu.py", "--help" ] + +# A second FROM insruction creates a new stage +# We use `test` for the test image +FROM app as test + +# getting all the exectubles in bin +RUN genoflu.py --help && genoflu.py --version + +# testing a genome +RUN wget -q https://raw.githubusercontent.com/USDA-VS/GenoFLU/main/test/test-genome-A1.fasta && \ + genoflu.py -f test-genome-A1.fasta \ No newline at end of file From c7436d88017b65497f71d59edd8940cab8690b5f Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Wed, 10 Jul 2024 17:53:24 +0000 Subject: [PATCH 02/10] add readme --- genoflu/{1.0.3 => 1.03}/Dockerfile | 3 ++- genoflu/README.md | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) rename genoflu/{1.0.3 => 1.03}/Dockerfile (95%) create mode 100644 genoflu/README.md diff --git a/genoflu/1.0.3/Dockerfile b/genoflu/1.03/Dockerfile similarity index 95% rename from genoflu/1.0.3/Dockerfile rename to genoflu/1.03/Dockerfile index 9a168edfe..93ee5c4f4 100644 --- a/genoflu/1.0.3/Dockerfile +++ b/genoflu/1.03/Dockerfile @@ -3,7 +3,7 @@ FROM mambaorg/micromamba:1.5.8 as app USER root WORKDIR / -ARG GENOFLU_VER="1.0.3" +ARG GENOFLU_VER="1.03-0" # LABEL instructions tag the image with metadata that might be important to the user LABEL base.image="micromamba:1.5.8" @@ -24,6 +24,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ apt-get autoclean && rm -rf /var/lib/apt/lists/* # install genoflu via bioconda; install into 'base' conda env +# genoflu is not recognized in micromamba by the version tag RUN micromamba install --yes --name base --channel conda-forge --channel bioconda \ genoflu=${GENOFLU_VER} && \ micromamba clean --all --yes diff --git a/genoflu/README.md b/genoflu/README.md new file mode 100644 index 000000000..f24fd2c97 --- /dev/null +++ b/genoflu/README.md @@ -0,0 +1,24 @@ +# GenoFLU container + +Main tool: [GenoFLU](https://github.com/USDA-VS/GenoFLU) + +Code repository: https://github.com/USDA-VS/GenoFLU + +Additional tools: + +Basic information on how to use this tool: + +- executable: genoflu.py +- help: --help +- version: --version +- description: "GenoFLU determines the genotype of a segmented flu sample by BLASTing a multi-segment FASTA against the BLAST database" + +Additional information: + +Full documentation: [https://github.com/USDA-VS/GenoFLU](https://github.com/USDA-VS/GenoFLU) + +## Example Usage + +```bash +genoflu.py -f input.fasta +``` From 974d6e190e31cd5f43f4aa5616028c9f4591e1cf Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Wed, 10 Jul 2024 17:56:56 +0000 Subject: [PATCH 03/10] add to license --- Program_Licenses.md | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/Program_Licenses.md b/Program_Licenses.md index 784acebde..f94868838 100644 --- a/Program_Licenses.md +++ b/Program_Licenses.md @@ -59,6 +59,7 @@ The licenses of the open-source software that is contained in these Docker image | Freyja | BSD-2 | https://github.com/andersen-lab/Freyja/blob/main/LICENSE | | GAMBIT | GNU aGPLv3 | https://github.com/jlumpe/gambit/blob/master/LICENSE | | GAMMA | Apache 2.0 | https://github.com/rastanton/GAMMA/blob/main/LICENSE | +| GenoFlu | GNU GPL v3 | https://github.com/USDA-VS/GenoFLU/blob/main/LICENSE | | Genotyphi | GNU GPLv3 | https://github.com/katholt/genotyphi/blob/main/LICENSE | | geNomad | ACADEMIC, INTERNAL, RESEARCH & DEVELOPMENT, NON-COMMERCIAL USE ONLY | https://github.com/apcamargo/genomad/blob/main/LICENSE | | GenoVi | BY-NC-SA Creative Commons License | https://github.com/robotoD/GenoVi/blob/main/LICENSE.txt | diff --git a/README.md b/README.md index 850159237..ce62aaeb6 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,7 @@ To learn more about the docker pull rate limits and the open source software pro | [Freyja](https://hub.docker.com/r/staphb/freyja)
[![docker pulls](https://badgen.net/docker/pulls/staphb/freyja)](https://hub.docker.com/r/staphb/freyja) |
  • [1.2](./freyja/1.2/)
  • [1.2.1](./freyja/1.2.1/)
  • [1.3.1](./freyja/1.3.1/)
  • [1.3.2](./freyja/1.3.2/)
  • [1.3.4](./freyja/1.3.4/)
  • [1.3.7](./freyja/1.3.7/)
  • [1.3.8](./freyja/1.3.8/)
  • [1.3.9](./freyja/1.3.9/)
  • [1.3.10](./freyja/1.3.10/)
  • [1.3.11](./freyja/1.3.11/)
  • [1.3.12](./freyja/1.3.12/)
  • [1.4.2](./freyja/1.4.2/)
  • [1.4.3](freyja/1.4.3/)
  • [1.4.4](freyja/1.4.4/)
  • [1.4.5](freyja/1.4.5/)
  • [1.4.7](freyja/1.4.7/)
  • [1.4.8](freyja/1.4.8/)
  • [1.4.9](freyja/1.4.9/)
  • [1.5.0](freyja/1.5.0/)
  • [1.5.1](freyja/1.5.1/)
| https://github.com/andersen-lab/Freyja | | [GAMBIT](https://hub.docker.com/r/staphb/gambit)
[![docker pulls](https://badgen.net/docker/pulls/staphb/gambit)](https://hub.docker.com/r/staphb/gambit) |
  • 0.3.0
  • 0.4.0
  • 0.5.0
  • 1.0.0
| https://github.com/jlumpe/gambit | | [GAMMA](https://hub.docker.com/r/staphb/gamma)
[![docker pulls](https://badgen.net/docker/pulls/staphb/gamma)](https://hub.docker.com/r/staphb/gamma) |
  • 1.4
  • 2.1
  • 2.2
| https://github.com/rastanton/GAMMA/ | +| [GenoFLU](https://hub.docker.com/r/staphb/genoflu)
[![docker pulls](https://badgen.net/docker/pulls/staphb/genoflu)]() |
  • [1.03](genoflu/1.03/)
| https://github.com/USDA-VS/GenoFLU | | [geNomad](https://hub.docker.com/r/staphb/genomad)
[![docker pulls](https://badgen.net/docker/pulls/staphb/genomad)](https://hub.docker.com/r/staphb/genomad) |
  • [1.7.4](./genomad/1.7.4/)
  • [1.8.0](./genomad/1.8.0/)
| https://github.com/apcamargo/genomad | | [GenoVi](https://hub.docker.com/r/staphb/genovi)
[![docker pulls](https://badgen.net/docker/pulls/staphb/genovi)](https://hub.docker.com/r/staphb/genovi) |
  • [0.2.16](./genovi/0.2.16/)
| https://github.com/robotoD/GenoVi | | [gfastats](https://hub.docker.com/r/staphb/gfastats)
[![docker pulls](https://badgen.net/docker/pulls/staphb/gfastats)](https://hub.docker.com/r/staphb/gfastats) |
  • [1.3.6](./gfastats/1.3.6/)
  • [1.3.7](./gfastats/1.3.7/)
| https://github.com/vgl-hub/gfastats | From bef89c2aeaa2a7d5adff9b1dbd33671b923dd9fe Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Thu, 11 Jul 2024 14:31:35 +0000 Subject: [PATCH 04/10] add --force-pkgs-dirs --- genoflu/1.03/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genoflu/1.03/Dockerfile b/genoflu/1.03/Dockerfile index 93ee5c4f4..074535ea5 100644 --- a/genoflu/1.03/Dockerfile +++ b/genoflu/1.03/Dockerfile @@ -27,7 +27,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # genoflu is not recognized in micromamba by the version tag RUN micromamba install --yes --name base --channel conda-forge --channel bioconda \ genoflu=${GENOFLU_VER} && \ - micromamba clean --all --yes + micromamba clean --all --force-pkgs-dirs --yes # ENV instructions set environment variables that persist from the build into the resulting image From 7fc8de3430348640d8129b8a33e62cc4c99377f5 Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Thu, 10 Oct 2024 14:18:51 +0000 Subject: [PATCH 05/10] krakentools add --- krakentools/d4a2fbe/Dockerfile | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 krakentools/d4a2fbe/Dockerfile diff --git a/krakentools/d4a2fbe/Dockerfile b/krakentools/d4a2fbe/Dockerfile new file mode 100644 index 000000000..424c6ab36 --- /dev/null +++ b/krakentools/d4a2fbe/Dockerfile @@ -0,0 +1,48 @@ +FROM ubuntu:jammy as app + +WORKDIR / + +# using a git commit because the last release was over three years ago,, despite recent(ish) activity in the repo's main branch +ARG KRAKENTOOLS_VERSION="d4a2fbe2833c2392a724697c0c97a3014e748474" + +# LABEL instructions tag the image with metadata that might be important to the user +LABEL base.image="ubuntu:jammy" +LABEL dockerfile.version="1" +LABEL software="KrakenTools" +LABEL software.version=${KRAKENTOOLS_VERSION} +LABEL description="KrakenTools is a set of tools for processing Kraken output" +LABEL website="https://github.com/jenniferlu717/KrakenTools" +LABEL documentation="https://github.com/jenniferlu717/KrakenTools" +LABEL license="https://github.com/jenniferlu717/KrakenTools/blob/master/LICENSE" +LABEL maintainer="Sage Wright" +LABEL maintainer.email="sagemwright@gmail.com" + + +# Install dependencies via apt-get; cleanup apt garbage +RUN apt-get update && apt-get install -y --no-install-recommends \ + wget \ + ca-certificates \ + python3 \ + python3-pip \ + python3-setuptools \ + gawk \ + jq \ + git \ + procps && \ + apt-get autoclean && rm -rf /var/lib/apt/lists/* + +RUN pip install biopython \ + pandas + +RUN git clone https://github.com/jenniferlu717/KrakenTools.git && \ + cd KrakenTools && \ + git checkout ${KRAKENTOOLS_VERSION} && \ + chmod +x * + +ENV PATH=/KrakenTools:${PATH} + +WORKDIR /data + +FROM app as test + +RUN python3 /KrakenTools/extract_kraken_reads.py --help \ No newline at end of file From 4327e5d82fef9cc68869afb93346de6f9ae1672c Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Thu, 10 Oct 2024 14:33:36 +0000 Subject: [PATCH 06/10] update readmes --- Program_Licenses.md | 1 + README.md | 3 ++- krakentools/d4a2fbe/README.md | 24 ++++++++++++++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 krakentools/d4a2fbe/README.md diff --git a/Program_Licenses.md b/Program_Licenses.md index a3d94a8a1..075159da6 100644 --- a/Program_Licenses.md +++ b/Program_Licenses.md @@ -85,6 +85,7 @@ The licenses of the open-source software that is contained in these Docker image | kma | Apache v2.0 | https://bitbucket.org/genomicepidemiology/kma/src/master/ | | Kraken | GNU GPLv3 | https://github.com/DerrickWood/kraken/blob/master/LICENSE | | Kraken2 | MIT | https://github.com/DerrickWood/kraken2/blob/master/LICENSE | +| KrakenTools | GNU GPLv3 | https://github.com/jenniferlu717/KrakenTools/blob/master/LICENSE | | KrakenUniq | GNU GPLv3 | https://github.com/fbreitwieser/krakenuniq/blob/master/LICENSE | | kSNP3 | BSD | available in zipped kSNP archive on sourceforge or in docker image under `/kSNP3.1_Linux_package/THE BSD OPENSOURCE LICENSE.pdf` | | kSNP4 | BSD | available in zipped kSNP archive on sourceforge or in docker image under `/opt/kSNP4 Linux package/Documentation/THE BSD OPENSOURCE LICENSE.pdf` | diff --git a/README.md b/README.md index 6977eded9..99e828f9a 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,8 @@ To learn more about the docker pull rate limits and the open source software pro | [Kleborate](https://hub.docker.com/r/staphb/kleborate/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/kleborate)](https://hub.docker.com/r/staphb/kleborate) |
  • [2.0.4](./kleborate/2.0.4/)
  • [2.1.0](./kleborate/2.1.0/)
  • [2.2.0](./kleborate/2.3.2/)
  • [2.3.2](./kleborate/2.3.2)
  • [2.3.2-2023-05](kleborate/2.3.2-2023-05/)
  • [2.4.1](kleborate/2.4.1/)
| https://github.com/katholt/Kleborate/
https://github.com/katholt/Kaptive/ | | [kma](https://hub.docker.com/r/staphb/kma/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/kma)](https://hub.docker.com/r/staphb/kma) |
  • 1.2.21
  • 1.4.10 (no database)
  • [1.4.14](./kma/1.4.14/) (no database)
| https://bitbucket.org/genomicepidemiology/kma/ | | [Kraken](https://hub.docker.com/r/staphb/kraken/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/kraken)](https://hub.docker.com/r/staphb/kraken) |
  • 1.0
  • 1.1.1
  • 1.1.1 (no database)
| https://github.com/DerrickWood/kraken | -| [Kraken2](https://hub.docker.com/r/staphb/kraken2/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/kraken2)](https://hub.docker.com/r/staphb/kraken2) |
  • 2.0.8-beta (no database)
  • 2.0.8-beta (MiniKraken2_v1_8GB db)
  • 2.0.8-beta_hv (human + virus db)
  • 2.0.9-beta (no db)
  • 2.0.9-beta (Minikraken v2 RefSeq: bacteria, archaea, viral, and human 8GB db)
  • 2.1.0 (no db)
  • 2.1.1 (no db)
  • 2.1.2 (no db)
  • [2.1.3](kraken2/2.1.3/) (no db)
| https://github.com/DerrickWood/kraken2 | +| [Kraken2](https://hub.docker.com/r/staphb/kraken2/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/kraken2)](https://hub.docker.com/r/staphb/kraken2) |
  • 2.0.8-beta (no database)
  • 2.0.8-beta (MiniKraken2_v1_8GB db)
  • 2.0.8-beta_hv (human + virus db)
  • 2.0.9-beta (no db)
  • 2.0.9-beta (Minikraken v2 RefSeq: bacteria, archaea, viral, and human 8GB db)
  • 2.1.0 (no db)
  • 2.1.1 (no db)
  • 2.1.2 (no db)
  • [2.1.3](kraken2/2.1.3/) (no db)
| https://github.com/DerrickWood/kraken2 | +| [KrakenTools](https://github.com/jenniferlu717/KrakenTools)
[![docker pulls](https://badgen.net/docker/pulls/staphb/krakentools)](https://hub.docker.com/r/staphb/krakentools) |
  • [d4a2fbe](./krakentools/d4a2fbe)
| https://github.com/jenniferlu717/KrakenTools | | [KrakenUniq](https://hub.docker.com/r/staphb/krakenuniq/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/krakenuniq)](https://hub.docker.com/r/staphb/krakenuniq) |
  • [1.0.4](./krakenuniq/1.0.4) (no database)
| https://github.com/fbreitwieser/krakenuniq | | [kSNP3](https://hub.docker.com/r/staphb/ksnp3/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/ksnp3)](https://hub.docker.com/r/staphb/ksnp3)|
  • 3.1
| https://sourceforge.net/projects/ksnp/ | | [kSNP4](https://hub.docker.com/r/staphb/ksnp4/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/ksnp4)](https://hub.docker.com/r/staphb/ksnp4)|
  • 4.0
  • [4.1](./ksnp4/4.1/)
| https://sourceforge.net/projects/ksnp/ | diff --git a/krakentools/d4a2fbe/README.md b/krakentools/d4a2fbe/README.md new file mode 100644 index 000000000..06980bc4c --- /dev/null +++ b/krakentools/d4a2fbe/README.md @@ -0,0 +1,24 @@ +# KrakenTools container + +Main tool [KrakenTools](https://github.com/jenniferlu717/KrakenTools) + +Code repository: https://github.com/jenniferlu717/KrakenTools + +Additional tools: + +Basic information on how to use this tool: + +- executable: various python scripts +- help: most scripts have -h options +- version: most scripts do not have versioning information +- description: "KrakenTools is a suite of scripts to be used alongside the Kraken, KrakenUniq, Kraken 2, or Bracken programs. These scripts are designed to help Kraken users with downstream analysis of Kraken results." + +Additional information: + +Full documentation: [https://github.com/jenniferlu717/KrakenTools](https://github.com/jenniferlu717/KrakenTools) + +## Example Usage + +```bash +python3 /KrakenTools/extract_kraken_reads.py -h +``` From 25cd73ab60baf9a99e3ced13b327dd6ae63817e2 Mon Sep 17 00:00:00 2001 From: Curtis Kapsak Date: Tue, 22 Oct 2024 19:06:59 +0000 Subject: [PATCH 07/10] silence warnings about AS casing; fix typo --- krakentools/d4a2fbe/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/krakentools/d4a2fbe/Dockerfile b/krakentools/d4a2fbe/Dockerfile index 424c6ab36..fddb91690 100644 --- a/krakentools/d4a2fbe/Dockerfile +++ b/krakentools/d4a2fbe/Dockerfile @@ -1,8 +1,8 @@ -FROM ubuntu:jammy as app +FROM ubuntu:jammy AS app WORKDIR / -# using a git commit because the last release was over three years ago,, despite recent(ish) activity in the repo's main branch +# using a git commit because the last release was over three years ago, despite recent(ish) activity in the repo's main branch ARG KRAKENTOOLS_VERSION="d4a2fbe2833c2392a724697c0c97a3014e748474" # LABEL instructions tag the image with metadata that might be important to the user @@ -43,6 +43,6 @@ ENV PATH=/KrakenTools:${PATH} WORKDIR /data -FROM app as test +FROM app AS test RUN python3 /KrakenTools/extract_kraken_reads.py --help \ No newline at end of file From da6080d0f41fde445c571272af9ddac403132863 Mon Sep 17 00:00:00 2001 From: Curtis Kapsak Date: Tue, 22 Oct 2024 19:10:03 +0000 Subject: [PATCH 08/10] added comment in dockerfile & added additional dependencies and versions to readme for krakentools --- krakentools/d4a2fbe/Dockerfile | 1 + krakentools/d4a2fbe/README.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/krakentools/d4a2fbe/Dockerfile b/krakentools/d4a2fbe/Dockerfile index fddb91690..d84b72c39 100644 --- a/krakentools/d4a2fbe/Dockerfile +++ b/krakentools/d4a2fbe/Dockerfile @@ -3,6 +3,7 @@ FROM ubuntu:jammy AS app WORKDIR / # using a git commit because the last release was over three years ago, despite recent(ish) activity in the repo's main branch +# this commit is from 2023-11-16: https://github.com/jenniferlu717/KrakenTools/commit/d4a2fbe2833c2392a724697c0c97a3014e748474 ARG KRAKENTOOLS_VERSION="d4a2fbe2833c2392a724697c0c97a3014e748474" # LABEL instructions tag the image with metadata that might be important to the user diff --git a/krakentools/d4a2fbe/README.md b/krakentools/d4a2fbe/README.md index 06980bc4c..42da8cc6a 100644 --- a/krakentools/d4a2fbe/README.md +++ b/krakentools/d4a2fbe/README.md @@ -6,6 +6,11 @@ Code repository: https://github.com/jenniferlu717/KrakenTools Additional tools: +- python 3.10.6 +- biopython 1.84 +- pandas 2.2.3 +- numpy 2.1.2 + Basic information on how to use this tool: - executable: various python scripts From f4b3565917a511a080f653e697899e962dcab6b0 Mon Sep 17 00:00:00 2001 From: Curtis Kapsak Date: Wed, 23 Oct 2024 16:06:04 +0000 Subject: [PATCH 09/10] pinning biopython and pandas versions and removing unnecessary jq and gawk --- krakentools/d4a2fbe/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/krakentools/d4a2fbe/Dockerfile b/krakentools/d4a2fbe/Dockerfile index d84b72c39..20691e85e 100644 --- a/krakentools/d4a2fbe/Dockerfile +++ b/krakentools/d4a2fbe/Dockerfile @@ -26,14 +26,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ python3 \ python3-pip \ python3-setuptools \ - gawk \ - jq \ git \ procps && \ apt-get autoclean && rm -rf /var/lib/apt/lists/* -RUN pip install biopython \ - pandas +RUN pip install biopython==1.84 \ + pandas==2.2.3 RUN git clone https://github.com/jenniferlu717/KrakenTools.git && \ cd KrakenTools && \ From 3eb82abebaab448ea9a2f306a198259ec4659af4 Mon Sep 17 00:00:00 2001 From: Curtis Kapsak Date: Wed, 23 Oct 2024 16:17:55 +0000 Subject: [PATCH 10/10] fixed version of python installed listed in krakentools readme --- krakentools/d4a2fbe/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/krakentools/d4a2fbe/README.md b/krakentools/d4a2fbe/README.md index 42da8cc6a..8794ae695 100644 --- a/krakentools/d4a2fbe/README.md +++ b/krakentools/d4a2fbe/README.md @@ -6,7 +6,7 @@ Code repository: https://github.com/jenniferlu717/KrakenTools Additional tools: -- python 3.10.6 +- python 3.10.12 - biopython 1.84 - pandas 2.2.3 - numpy 2.1.2