[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-908a85?logo=gitpod)](https://gitpod.io/#https://github.com/StaPH-B/docker-builds) # [docker-builds](#) This repository contains the Dockerfiles and other assorted files necessary for building Docker images for a variety of programs used by members of the StaPH-B (State Public Health Lab Bioinformatics) consortium. The purpose of this repository is to provide a centralized location for Docker images that is easily accessible for users, with clear documentation on how the containers were built and how to use them. There are several community projects that create and share containers for bioinformatic tools. This repository contains the Dockerfiles and other assorted files necessary for building Docker images for a variety of tools used by members of the StaPH-B (State Public Health Lab Bioinformatics) consortium. The purpose of this repository is to provide a centralized location for Docker images that is easily accessible for users, with clear documentation on how the containers were built and how to use them. This is a community resource, built and maintined by users from varied backgrounds and expertise levels. As such, we have provided some [templates for contributing to this repository](./dockerfile-template). If **you** would like to add a Docker image or improve upon the existing images, please fork the repository, make your changes/additions, and submit a pull request. If you are having an issue with an existing image, please submit an issue. We welcome any and all feedback! [See more details on how to contribute here](https://staph-b.github.io/docker-builds/contribute/) ## Docker image repositories & hosting We host all of our docker images on two different repositories: 1. [Dockerhub - https://hub.docker.com/r/staphb/](https://hub.docker.com/r/staphb/) 2. [Quay.io - https://quay.io/organization/staphb/](https://quay.io/organization/staphb/) The development process of creating a new image is summarized as follows: ```mermaid graph TD A[fork staphb/docker-builds repo]-->B[create tool/version directory] B-->C[create readme] B-->D[create dockerfile] D-->G[create app and test layers] A-->E[add License to Program_Licenses.md] A-->F[add tool to list in this readme] E-->H[submit PR] F-->H G-->H C-->H H-->I{build to test} I--success-->J[PR merged and docker image pushed to dockerhub and quay] I--failure-->K[edit dockerfile] K-->I ``` ## User Guide The [StaPH-B Docker User Guide](https://staphb.org/docker-builds/) was created to outline methods and best practices for using and developing docker containers. There are chapters for: - [Contributing](https://staphb.org/docker-builds/contribute/) - [Downloading Docker images](https://staphb.org/docker-builds/get_containers/) - [Running Docker containers](https://staphb.org/docker-builds/run_containers/) - [Developing Docker images](https://staphb.org/docker-builds/make_containers/) - [Useful links](https://staphb.org/docker-builds/useful_links/) ### Summarized usage guide for docker ```bash # Build a docker image to the 'test' layer docker build --tag tool:test --target test docker build --tag samtools:test --target test samtools/1.15 # Download a docker image from dockerhub (most tools have a 'latest' version tag) docker pull staphb/tool:version docker pull staphb/shigatyper:2.0.2 # Run the container (don't forget to mount your volumes!) docker run --rm -u $(id -u):$(id -g) -v :/data tool:version docker run --rm -u $(id -u):$(id -g) -v $(pwd)/amrfinder_test_files:/data amrfinder:3.10 amrfinder --nucleotide 2021CK-01854_contigs.fa --threads 20 --name 2021CK-01854 --output /data/2021CK-01854.txt --organism Klebsiella ``` Further documentation can be found at [docs.docker.com](https://docs.docker.com/engine/reference/run/) ### Templates Several template files are provided. These are intended to be copied and edited by contributors. 1. [dockerfile-template/Dockerfile](./dockerfile-template/Dockerfile) is the basic template useful for most images 2. [dockerfile-template/Dockerfile_mamba](./dockerfile-template/Dockerfile_mamba) is a basic template for using the micromamba base image 3. [dockerfile-template/README.md](./dockerfile-template/README.md) is a basic readme file template to assist others in using the image ### What about Singularity? For many people, Docker is not an option, but Singularity is. Most Docker containers are compatible with Singularity and can easily be converted to Singularity format. Please see the [User Guide](https://staphb.org/docker-builds/) for instructions on how to download docker images from dockerhub and how to run them using Singularity. We've worked hard to ensure that our containers are compatibile with Singularity, but if you find one that isn't, please leave an issue and let us know! ### Summarized usage guide for singularity ```bash # Pulling a container from dockerhub (creates a file) singularity pull --name docker://staphb/bbtools:38.96 singularity pull --name staphb-bbtools-38.96.simg docker://staphb/bbtools:38.96 # Running the container (don't forget to mount your volumes!) singularity exec --bind :/data singularity exec --bind $(pwd)/fastq:/data staphb-bbtools-38.96.simg bbduk.sh in1=sample1_R1.fastq.gz in2=sample1_R2.fastq.gz out1=bbduk/sample1_rmphix_R1.fastq.gz out2=bbduk/sample1_rmphix_R2.fastq.gz outm=bbduk/sample1.matched_phix.fq ref=/opt/bbmap/resources/phix174_ill.ref.fa.gz stats=bbduk/sample1.phix.stats.txt threads=4 ``` Further documentation can be found at [docs.sylabs.io](https://docs.sylabs.io/guides/3.1/user-guide/cli.html) ## Logs In November 2020, Docker began to implement pull rate limits for images hosted on dockerhub. This limits the number of `docker pull`'s per time period (e.g. anonymous users allowed 100 pulls per six hours). We applied and were approved for Docker's "Open Source Program," which should have removed the pull rate limits for all `staphb` docker images! 🎉 🥳 If you encounter an error such as `ERROR: toomanyrequests: Too Many Requests.` or `You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits.` , please let us know by [submitting an issue.](https://github.com/StaPH-B/docker-builds/issues) **A huge thank you goes to the folks at Docker for supporting our efforts to distribute & share critical tools for public health bioinformatics. This has been especially important during the COVID-19 global pandemic, as many of these tools are used to conduct genomic surveillance on the SARS-CoV-2 virus as well as other important pathogens of public health concern.** To learn more about the docker pull rate limits and the open source software program, please see these blog posts ([1](https://www.docker.com/blog/docker-hub-image-retention-policy-delayed-and-subscription-updates/), [2](https://www.docker.com/blog/scaling-docker-to-serve-millions-more-developers-network-egress/), and [3](https://www.docker.com/blog/expanded-support-for-open-source-software-projects/)) and Docker documentation ([1](https://docs.docker.com/docker-hub/download-rate-limit/)). *NOTE: In the table below, we do not provide individual links to the various tools on quay.io, please visit the above quay.io link to find all of our docker images.* ## [Available Docker images](https://hub.docker.com/r/staphb/) | Software | Version | Link | | :--------: | ------- | -------- | | [ABRicate](https://hub.docker.com/r/staphb/abricate/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/abricate)](https://hub.docker.com/r/staphb/abricate) |
  • 0.8.7
  • 0.8.13
  • 0.8.13s (+serotypefinder db)
  • 0.9.8
  • 1.0.0
  • [1.0.1 (+ A. baumannii plasmid typing db)](abricate/1.0.1-Abaum-plasmid)
  • [1.0.1 (+ InsaFlu db)](abricate/1.0.1-insaflu-220727)
  • [1.0.1 (+ *Vibrio cholerae* db)](abricate/1.0.1-vibrio-cholera/)
| https://github.com/tseemann/abricate | | [ACI](https://hub.docker.com/r/staphb/aci/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/aci)](https://hub.docker.com/r/staphb/aci) |
  • [1.4.20240116](./aci/1.4.20240116/)
| https://github.com/erinyoung/ACI | | [ANIclustermap](https://hub.docker.com/r/staphb/aniclustermap/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/aniclustermap)](https://hub.docker.com/r/staphb/aniclustermap) |
  • [1.3.0](aniclusteramp/1.3.0/)
| https://github.com/moshi4/ANIclustermap | | [any2fasta](https://hub.docker.com/r/staphb/any2fasta/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/any2fasta)](https://hub.docker.com/r/staphb/any2fasta) |
  • 0.4.2
| https://github.com/tseemann/any2fasta | | [ARIBA](https://hub.docker.com/r/staphb/ariba/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/ariba)](https://hub.docker.com/r/staphb/ariba) |
  • [2.14.4](./ariba/2.14.4/)
  • [2.14.6](./ariba/2.14.6/)
  • [2.14.7](./ariba/2.14.7/)
| https://github.com/sanger-pathogens/ariba | | [artic](https://hub.docker.com/r/staphb/artic)
[![docker pulls](https://badgen.net/docker/pulls/staphb/artic)](https://hub.docker.com/r/staphb/artic) |
  • [1.2.4-1.11.1 (artic-medaka)](artic/1.2.4-1.11.1/)
| https://github.com/artic-network/fieldbioinformatics | | [artic-ncov2019](https://hub.docker.com/r/staphb/artic-ncov2019)
[![docker pulls](https://badgen.net/docker/pulls/staphb/artic-ncov2019)](https://hub.docker.com/r/staphb/artic-ncov2019) |
  • 1.3.0
| https://github.com/artic-network/fieldbioinformatics | | [artic-ncov2019-epi2me](https://hub.docker.com/r/staphb/artic-ncov2019-epi2me)
[![docker pulls](https://badgen.net/docker/pulls/staphb/artic-ncov2019-epi2me)](https://hub.docker.com/r/staphb/artic-ncov2019-epi2me) |
  • 0.3.10
| https://github.com/epi2me-labs/wf-artic | | [artic-ncov2019-medaka](https://hub.docker.com/r/staphb/artic-ncov2019-medaka)
[![docker pulls](https://badgen.net/docker/pulls/staphb/artic-ncov2019-medaka)](https://hub.docker.com/r/staphb/artic-ncov2019-medaka) |
  • 1.1.0
| https://github.com/artic-network/artic-ncov2019 | | [artic-ncov2019-nanopolish](https://hub.docker.com/r/staphb/artic-ncov2019-nanopolish)
[![docker pulls](https://badgen.net/docker/pulls/staphb/artic-ncov2019-nanopolish)](https://hub.docker.com/r/staphb/artic-ncov2019-nanopolish) |
  • 1.1.0
| https://github.com/artic-network/artic-ncov2019 | | [Augur](https://hub.docker.com/r/staphb/augur)
[![docker pulls](https://badgen.net/docker/pulls/staphb/augur)](https://hub.docker.com/r/staphb/augur) |
  • [6.3.0](./augur/6.3.0/)
  • [7.0.2](./augur/7.0.2/)
  • [8.0.0](./augur/8.0.0/)
  • [9.0.0](./augur/9.0.0/)
  • [16.0.3](./augur/16.0.3/)
  • [24.2.2](./augur/24.2.2/)
  • [24.2.3](./augur/24.2.3/)
| https://github.com/nextstrain/augur | | [Auspice](https://hub.docker.com/r/staphb/auspice)
[![docker pulls](https://badgen.net/docker/pulls/staphb/auspice)](https://hub.docker.com/r/staphb/auspice) |
  • 2.12.0
| https://github.com/nextstrain/auspice | | [bakta](https://hub.docker.com/r/staphb/bakta)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bakta)](https://hub.docker.com/r/staphb/bakta) |
  • [1.9.2](./bakta/1.9.2/)
  • [1.9.2-light](./bakta/1.9.2-5.1-light/)
  • [1.9.3](./bakta/1.9.3/)
  • [1.9.3-light](./bakta/1.9.3-5.1-light/)
| https://github.com/oschwengers/bakta | | [bandage](https://hub.docker.com/r/staphb/bandage)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bandage)](https://hub.docker.com/r/staphb/bandage) |
  • [0.8.1](./bandage/0.8.1/)
| https://rrwick.github.io/Bandage/ | | [BBTools](https://hub.docker.com/r/staphb/bbtools/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bbtools)](https://hub.docker.com/r/staphb/bbtools) |
  • [38.76](./bbtools/38.76/)
  • [38.86](./bbtools/38.86/)
  • [38.95](./bbtools/38.95/)
  • [38.96](./bbtools/38.96/)
  • [38.97](./bbtools/38.97/)
  • [38.98](./bbtools/38.98/)
  • [38.99](./bbtools/38.99/)
  • [39.00](./bbtools/39.00/)
  • [39.01](./bbtools/39.01/)
  • [39.06](./bbtools/39.06/)
| https://jgi.doe.gov/data-and-tools/bbtools/ | | [bcftools](https://hub.docker.com/r/staphb/bcftools/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bcftools)](https://hub.docker.com/r/staphb/bcftools) |
  • [1.10.2](./bcftools/1.10.2/)
  • [1.11](./bcftools/1.11/)
  • [1.12](./bcftools/1.12/)
  • [1.13](./bcftools/1.13/)
  • [1.14](./bcftools/1.14/)
  • [1.15](./bcftools/1.15/)
  • [1.16](./bcftools/1.16/)
  • [1.17](./bcftools/1.17/)
  • [1.18](bcftools/1.18/)
  • [1.19](./bcftools/1.19/)
  • [1.20](./bcftools/1.20/)
| https://github.com/samtools/bcftools | | [bedtools](https://hub.docker.com/r/staphb/bedtools/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bedtools)](https://hub.docker.com/r/staphb/bedtools) |
  • 2.29.2
  • 2.30.0
  • [2.31.0](bedtools/2.31.0/)
  • [2.31.1](bedtools/2.31.1/)
| https://bedtools.readthedocs.io/en/latest/
https://github.com/arq5x/bedtools2 | | [berrywood-report-env](https://hub.docker.com/r/staphb/berrywood-report-env/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/berrywood-report-env)](https://hub.docker.com/r/staphb/berrywood-report-env) |
  • 1.0
| none | | [blast+](https://hub.docker.com/r/staphb/blast/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/blast)](https://hub.docker.com/r/staphb/blast) |
  • [2.13.0](blast/2.13.0/)
  • [2.14.0](blast/2.14.0/)
  • [2.14.1](blast/2.14.1/)
  • [2.15.0](blast/2.15.0/)
| https://www.ncbi.nlm.nih.gov/books/NBK279690/ | | [bowtie2](https://hub.docker.com/r/staphb/bowtie2/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bowtie2)](https://hub.docker.com/r/staphb/bowtie2) |
  • [2.4.4](./bowtie2/2.4.4/)
  • [2.4.5](./bowtie2/2.4.5/)
  • [2.5.1](./bowtie2/2.5.1/)
  • [2.5.3](./bowtie2/2.5.3/)
| http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml
https://github.com/BenLangmead/bowtie2 | | [Bracken](https://hub.docker.com/r/staphb/bracken/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bracken)](https://hub.docker.com/r/staphb/bracken) |
  • [2.9](./bracken/2.9)
| https://ccb.jhu.edu/software/bracken/index.shtml?t=manual
https://github.com/jenniferlu717/Bracken | | [BUSCO](https://hub.docker.com/r/staphb/busco/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/busco)](https://hub.docker.com/r/staphb/busco) |
  • [5.4.7](./busco/5.4.7/)
  • [5.6.1](./busco/5.6.1/)
  • [5.6.1-prok-bacteria_odb10_2024-01-08](./busco/5.6.1-prok-bacteria_odb10_2024-01-08/)
  • [5.7.1](./busco/5.7.1/)
  • [5.7.1-prok-bacteria_odb10_2024-01-08](./busco/5.7.1-prok-bacteria_odb10_2024-01-08/)
| https://busco.ezlab.org/busco_userguide.html
https://gitlab.com/ezlab/busco | | [BWA](https://hub.docker.com/r/staphb/bwa)
[![docker pulls](https://badgen.net/docker/pulls/staphb/bwa)](https://hub.docker.com/r/staphb/bwa) |
  • 0.7.17
  • [0.7.18](./bwa/0.7.18/)
| https://github.com/lh3/bwa | | [Canu](https://hub.docker.com/r/staphb/canu)
[![docker pulls](https://badgen.net/docker/pulls/staphb/canu?)](https://hub.docker.com/r/staphb/canu)|
  • 2.0
  • 2.1.1
  • 2.2
| https://canu.readthedocs.io/en/latest/
https://github.com/marbl/canu | | [Canu-Racon](https://hub.docker.com/r/staphb/canu-racon/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/canu-racon)](https://hub.docker.com/r/staphb/canu-racon) |
  • 1.7.1 (Canu), 1.3.1 (Racon), 2.13 (minimap2)
  • 1.9 (Canu), 1.4.3 (Racon), 2.17 (minimap2)
  • 1.9i (Canu), 1.4.3 (Racon), 2.17 (minimap2), (+racon_preprocess.py)
  • 2.0 (Canu), 1.4.3 (Racon), 2.17 (minimap2)
| https://canu.readthedocs.io/en/latest/
https://github.com/lbcb-sci/racon
https://github.com/isovic/racon (ARCHIVED)
https://lh3.github.io/minimap2/ | | [centroid](https://hub.docker.com/r/staphb/centroid/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/centroid)](https://hub.docker.com/r/staphb/centroid) |
  • 1.0.0
| https://github.com/stjacqrm/centroid | | [CDC-SPN](https://hub.docker.com/r/staphb/cdc-spn/)
[![docker pulls](https://badgen.net/docker/pulls/staphb/cdc-spn)](https://hub.docker.com/r/staphb/cdc-spn) |
  • 0.1 (no version)
| https://github.com/BenJamesMetcalf/Spn_Scripts_Reference | | [cfsan-snp-pipeline](https://hub.docker.com/r/staphb/cfsan-snp-pipeline)
[![docker pulls](https://badgen.net/docker/pulls/staphb/cfsan-snp-pipeline)](https://hub.docker.com/r/staphb/cfsan-snp-pipeline) |
  • 2.0.2
  • 2.2.1
| https://github.com/CFSAN-Biostatistics/snp-pipeline | | [CheckM](https://hub.docker.com/r/staphb/checkm)
[![docker pulls](https://badgen.net/docker/pulls/staphb/checkm)](https://hub.docker.com/r/staphb/checkm) |
  • [1.2.2](./checkm/1.2.2)
| https://github.com/Ecogenomics/CheckM | | [Circlator](https://hub.docker.com/r/staphb/circlator)
[![docker pulls](https://badgen.net/docker/pulls/staphb/circlator)](https://hub.docker.com/r/staphb/circlator) |
  • 1.5.6
  • 1.5.5
| https://github.com/sanger-pathogens/circlator | | [Circos](https://hub.docker.com/r/staphb/circos)
[![docker pulls](https://badgen.net/docker/pulls/staphb/circos)](https://hub.docker.com/r/staphb/circos) |
  • [0.69-9](./circos/0.69.9/)
| https://circos.ca/ | | [CirculoCov](https://hub.docker.com/r/staphb/circulocov)
[![docker pulls](https://badgen.net/docker/pulls/staphb/circulocov)](https://hub.docker.com/r/staphb/circulocov) |
  • [0.1.20240104](./circulocov/0.1.20240104/)
| https://github.com/erinyoung/CirculoCov | | [Clustalo](https://hub.docker.com/r/staphb/clustalo)
[![docker pulls](https://badgen.net/docker/pulls/staphb/clustalo)](https://hub.docker.com/r/staphb/clustalo) |
  • 1.2.4
| http://www.clustal.org/omega/ | | [colorid](https://hub.docker.com/r/staphb/colorid)
[![docker pulls](https://badgen.net/docker/pulls/staphb/colorid)](https://hub.docker.com/r/staphb/colorid) |
  • 0.1.4.3
| https://github.com/hcdenbakker/colorid | | [cutshaw-report-env](https://hub.docker.com/r/staphb/cutshaw-report-env)
[![docker pulls](https://badgen.net/docker/pulls/staphb/cutshaw-report-env)](https://hub.docker.com/r/staphb/cutshaw-report-env) |
  • 1.0.0
| https://github.com/VADGS/CutShaw | | [datasets-sars-cov-2](https://github.com/CDCgov/datasets-sars-cov-2)
[![docker pulls](https://badgen.net/docker/pulls/staphb/datasets-sars-cov-2)](https://hub.docker.com/r/staphb/datasets-sars-cov-2) |
  • 0.6.2
  • 0.6.3
  • 0.7.2
| https://github.com/CDCgov/datasets-sars-cov-2 | | [diamond](https://github.com/bbuchfink/diamond)
[![docker pulls](https://badgen.net/docker/pulls/staphb/diamond)](https://hub.docker.com/r/staphb/diamond) |
  • [2.1.9](./diamond/2.1.9)
| https://github.com/bbuchfink/diamond| | [dnaapler](https://hub.docker.com/r/staphb/dnaapler)
[![docker pulls](https://badgen.net/docker/pulls/staphb/dnaapler)](https://hub.docker.com/r/staphb/dnaapler) |
  • [0.1.0](dnaapler/0.1.0/)
  • [0.4.0](dnaapler/0.4.0/)
  • [0.5.0](dnaapler/0.5.0/)
  • [0.5.1](dnaapler/0.5.1/)
  • [0.7.0](dnaapler/0.7.0/)
| https://github.com/gbouras13/dnaapler | | [dragonflye](https://hub.docker.com/r/staphb/dragonflye)
[![docker pulls](https://badgen.net/docker/pulls/staphb/dragonflye)](https://hub.docker.com/r/staphb/dragonflye) |
  • [1.0.14](./dragonflye/1.0.14/)
  • [1.1.1](./dragonflye/1.1.1/)
  • [1.1.2](./dragonflye/1.1.2/)
  • [1.2.0](./dragonflye/1.2.0/)
| https://github.com/rpetit3/dragonflye | | [Dr. PRG ](https://hub.docker.com/r/staphb/drprg)
[![docker pulls](https://badgen.net/docker/pulls/staphb/drprg)](https://hub.docker.com/r/staphb/drprg) |
  • [0.1.1](drprg/0.1.1/)
| https://mbh.sh/drprg/ | | [DSK](https://hub.docker.com/r/staphb/dsk)
[![docker pulls](https://badgen.net/docker/pulls/staphb/dsk)](https://hub.docker.com/r/staphb/dsk) |
  • [0.0.100](./dsk/0.0.100/)
  • [2.3.3](./dsk/2.3.3/)
  • /ul> | https://gatb.inria.fr/software/dsk/ | | [el_gato](https://hub.docker.com/r/staphb/elgato)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/elgato)](https://hub.docker.com/r/staphb/elgato) |
    • [1.15.2](./elgato/1.15.2)
    | https://github.com/appliedbinf/el_gato | | [emboss](https://hub.docker.com/r/staphb/emboss)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/emboss)](https://hub.docker.com/r/staphb/emboss) |
    • 6.6.0 (no version)
    | http://emboss.sourceforge.net | | [emmtyper](https://hub.docker.com/r/staphb/emmtyper)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/emmtyper)](https://hub.docker.com/r/staphb/emmtyper) |
    • 0.2.0
    | https://github.com/MDU-PHL/emmtyper | | [emm-typing-tool](https://hub.docker.com/r/staphb/emm-typing-tool)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/emm-typing-tool)](https://hub.docker.com/r/staphb/emm-typing-tool) |
    • 0.0.1 (no version)
    | https://github.com/phe-bioinformatics/emm-typing-tool | | [EToKi](https://hub.docker.com/r/staphb/etoki)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/etoki)](https://hub.docker.com/r/staphb/etoki) |
    • 1.2.1
    | https://github.com/zheminzhou/EToKi | | [FastANI](https://hub.docker.com/r/staphb/fastani)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/fastani)](https://hub.docker.com/r/staphb/fastani) |
    • 1.1
    • 1.32
    • 1.33
    • 1.33 + RGDv2
    • [1.34](fastani/1.34)
    • [1.34 + RGDv2](fastani/1.34-RGDV2/)
    | https://github.com/ParBLiSS/FastANI | | [fasten](https://hub.docker.com/r/staphb/fasten)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/fasten)](https://hub.docker.com/r/staphb/fasten) |
    • [0.7.2](./fasten/0.7.2)
    • [0.8.1](./fasten/0.8.1/)
    | https://github.com/lskatz/fasten | | [Fastp](https://hub.docker.com/r/staphb/fastp)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/fastp)](https://hub.docker.com/r/staphb/fastp) |
    • 0.23.2
    • [0.23.4](fastp/0.23.4/)
    | http://opengene.org/fastp/
    https://github.com/OpenGene/fastp | | [FastTree](https://hub.docker.com/r/staphb/fasttree)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/fasttree)](https://hub.docker.com/r/staphb/fasttree) |
    • 2.1.11
    | http://www.microbesonline.org/fasttree/ | | [FastQC](https://hub.docker.com/r/staphb/fastqc)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/fastqc)](https://hub.docker.com/r/staphb/fastqc) |
    • 0.11.8
    • 0.11.9
    • 0.12.1
    | https://www.bioinformatics.babraham.ac.uk/projects/fastqc/
    https://github.com/s-andrews/FastQC | | [fastq-scan](https://hub.docker.com/r/staphb/fastq-scan)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/fastq-scan)](https://hub.docker.com/r/staphb/fastq-scan) |
    • 0.4.3
    • 0.4.4
    • 1.0.0
    • 1.0.1
    | https://github.com/rpetit3/fastq-scan | | [Freebayes](https://hub.docker.com/r/staphb/freebayes)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/freebayes)](https://hub.docker.com/r/staphb/freebayes) |
    • 1.3.6
    • 1.3.7
    • 1.3.7
    • 1.3.7
    | https://github.com/freebayes/freebayes | | [Filtlong](https://hub.docker.com/r/staphb/filtlong)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/filtlong)](https://hub.docker.com/r/staphb/filtlong) |
    • 0.2.0
    • 0.2.1
    | https://github.com/rrwick/filtlong | | [FLASH](https://hub.docker.com/r/staphb/flash)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/flash)](https://hub.docker.com/r/staphb/flash) |
    • 1.2.11
    | http://ccb.jhu.edu/software/FLASH | | [Flye](https://hub.docker.com/r/staphb/flye)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/flye)](https://hub.docker.com/r/staphb/flye) |
    • [2.5](flye/2.5/)
    • [2.7](flye/2.7/)
    • [2.8](flye/2.8/)
    • [2.9](flye/2.9/)
    • [2.9.1](flye/2.9.1/)
    • [2.9.2](flye/2.9.2/)
    • [2.9.3](flye/2.9.3/)
    | https://github.com/fenderglass/Flye | | [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/)
    | 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/ | | [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/)
    | 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
    | https://github.com/vgl-hub/gfastats | | [Gubbins](https://hub.docker.com/r/staphb/gubbins)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/gubbins)](https://hub.docker.com/r/staphb/gubbins) |
    • [3.3.3](./gubbins/3.3.3/)
    • [3.3.4](./gubbins/3.3.4/)
    | https://github.com/nickjcroucher/gubbins | | [heatcluster](https://hub.docker.com/r/staphb/heatcluster)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/heatcluster)](https://hub.docker.com/r/staphb/heatcluster) |
    • [1.0.2c](./heatcluster/1.0.2c/)
    | https://github.com/DrB-S/heatcluster/tree/main | | [hmmer](https://hub.docker.com/r/staphb/hmmer)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/hmmer)](https://hub.docker.com/r/staphb/hmmer) |
    • [3.3](hmmer/3.3/)
    • [3.3.2](hmmer/3.3.2/)
    • [3.4](./hmmer/3.4/)
    | http://hmmer.org/ | | [homopolish](https://hub.docker.com/r/staphb/homopolish)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/homopolish)](https://hub.docker.com/r/staphb/homopolish) |
    • 0.4.1
    | https://github.com/ythuang0522/homopolish/ | | [htslib](https://hub.docker.com/r/staphb/htslib)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/htslib)](https://hub.docker.com/r/staphb/htslib) |
    • [1.14](./htslib/1.14)
    • [1.15](./htslib/1.15)
    • [1.16](./htslib/1.16)
    • [1.17](./htslib/1.17)
    • [1.18](./htslib/1.18/)
    • [1.19](./htslib/1.19/)
    • [1.20](./htslib/1.20/)
    | https://www.htslib.org/ | | [iqtree](https://hub.docker.com/r/staphb/iqtree/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/iqtree)](https://hub.docker.com/r/staphb/iqtree) |
    • 1.6.7
    | http://www.iqtree.org/ | | [iqtree2](https://hub.docker.com/r/staphb/iqtree2/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/iqtree2)](https://hub.docker.com/r/staphb/iqtree2) |
    • 2.1.2
    • 2.2.2.2
    • [2.2.2.6](iqtree2/2.2.2.6/)
    • [2.2.2.7](iqtree2/2.2.2.7/)
    | http://www.iqtree.org/ | | [IPA](https://hub.docker.com/r/staphb/pbipa)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/pbipa)](https://hub.docker.com/r/staphb/pbipa) |
    • [1.8.0](./pbipa/1.8.0/)
    | https://github.com/PacificBiosciences/pbipa | | [IRMA](https://hub.docker.com/r/staphb/irma/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/irma)](https://hub.docker.com/r/staphb/irma) |
    • 1.0.2
    • 1.0.3
    • 1.1.2
    • 1.1.3
    • [1.1.4](./irma/1.1.4/)
    | https://wonder.cdc.gov/amd/flu/irma/| | [isPcr](https://users.soe.ucsc.edu/~kent/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/ispcr)](https://hub.docker.com/r/staphb/ispcr) |
    • [33](ispcr/33/)
    | https://users.soe.ucsc.edu/~kent/ | | [iVar](https://hub.docker.com/r/staphb/ivar/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/ivar)](https://hub.docker.com/r/staphb/ivar) |
    • 1.1
    • 1.1 (+SARS-CoV2 reference)
    • 1.2.1
    • 1.2.1 (+SC2 ref)
    • 1.2.2 (+SC2 ref and artic bedfiles)
    • 1.3
    • 1.3.1
    • 1.3.2
    • 1.4.1
    • 1.4.2
    | https://github.com/andersen-lab/ivar | | [Kaptive](https://hub.docker.com/r/staphb/kaptive/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/kaptive)](https://hub.docker.com/r/staphb/kaptive) |
    • [2.0.0](./kaptive/2.0.0/)
    • [2.0.3](./kaptive/2.0.3/)
    • [2.0.5](./kaptive/2.0.5/)
    • [2.0.8](./kaptive/2.0.8/)
    | https://github.com/klebgenomics/Kaptive | | [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 | | [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/ | | [label](https://hub.docker.com/r/staphb/label/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/label)](https://hub.docker.com/r/staphb/label)|
    • [0.6.4](./label/0.6.4/)
    | https://wonder.cdc.gov/amd/flu/label | | [legsta](https://hub.docker.com/r/staphb/legsta/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/legsta)](https://hub.docker.com/r/staphb/legsta)|
    • 0.3.7
    • 0.5.1
    | https://github.com/tseemann/legsta | | [liftoff](https://hub.docker.com/r/staphb/liftoff/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/liftoff)](https://hub.docker.com/r/staphb/liftoff)|
    • 1.6.3
    | https://github.com/agshumate/Liftoff | | [lima](https://hub.docker.com/r/staphb/lima/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/lima)](https://hub.docker.com/r/staphb/lima)|
    • [2.9.0](./lima/2.9.0/)
    • [2.9.0+Rscripts](./lima/2.9.0+Rscripts/)
    | https://github.com/PacificBiosciences/barcoding | | [longshot](https://hub.docker.com/r/staphb/longshot/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/longshot)](https://hub.docker.com/r/staphb/longshot)|
    • [0.4.5](longshot/0.4.5)
    • [1.0.0](longshot/1.0.0/)
    | https://github.com/pjedge/longshot | | [Lyve-SET (includes CG-Pipeline scripts and raxml)](https://hub.docker.com/r/staphb/lyveset/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/lyveset)](https://hub.docker.com/r/staphb/lyveset) |
    • 1.1.4f
    • 2.0.1
    | https://github.com/lskatz/lyve-SET https://github.com/lskatz/CG-Pipeline | | [MAFFT](https://hub.docker.com/r/staphb/mafft/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/mafft)](https://hub.docker.com/r/staphb/mafft) |
    • [7.450](./mafft/7.450/)
    • [7.475](./mafft/7.475/)
    • [7.505](./mafft/7.505/)
    • [7.520](./mafft/7.520/)
    | https://mafft.cbrc.jp/alignment/software/ | | [Mash](https://hub.docker.com/r/staphb/mash/)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/mash)](https://hub.docker.com/r/staphb/mash) |
    • 2.1
    • 2.2
    • 2.3
    | https://github.com/marbl/Mash | | [mashtree](https://hub.docker.com/r/staphb/mashtree)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/mashtree)](https://hub.docker.com/r/staphb/mashtree) |
    • [0.52.0](./mashtree/0.52.0/)
    • [0.57.0](./mashtree/0.57.0/)
    • [1.0.4](./mashtree/1.0.4/)
    • [1.2.0](./mashtree/1.2.0/)
    • [1.4.6](./mashtree/1.4.6/)
    | https://github.com/lskatz/mashtree | | [MaSuRCA](https://hub.docker.com/r/staphb/masurca)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/masurca)](https://hub.docker.com/r/staphb/masurca) |
    • 4.0.8
    • 4.0.9
    • 4.1.0
    | https://github.com/alekseyzimin/masurca | | [medaka](https://hub.docker.com/r/staphb/medaka)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/medaka)](https://hub.docker.com/r/staphb/medaka) |
    • 0.8.1
    • 1.0.1
    • 1.2.0
    | https://github.com/nanoporetech/medaka | | [metaphlan](https://hub.docker.com/r/staphb/metaphlan)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/metaphlan)](https://hub.docker.com/r/staphb/metaphlan) |
    • 3.0.3-no-db (no database)
    • 3.0.3 (~3GB db)
    • [4.1.0](./metaphlan/4.1.0/) (no database)
    | https://github.com/biobakery/MetaPhlAn | | [MIDAS](https://hub.docker.com/r/staphb/midas)
    [![docker pulls](https://badgen.net/docker/pulls/staphb/midas)](https://hub.docker.com/r/staphb/midas) |
    • 1.3.2 (no database)
    • | https://github.com/snayfach/MIDAS | | [minimap2](https://hub.docker.com/r/staphb/minimap2)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/minimap2)](https://hub.docker.com/r/staphb/minimap2) |
      • 2.17
      • 2.18
      • 2.21
      • 2.22
      • 2.23
      • 2.24
      • 2.25
      • [2.26](./minimap2/2.26)
      • [2.27](./minimap2/2.27/)
      • li>[2.28](./minimap2/2.28/)
      | https://github.com/lh3/minimap2 | | [minipolish](https://hub.docker.com/r/staphb/minipolish)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/minipolish)](https://hub.docker.com/r/staphb/minipolish) |
      • 0.1.3
      | https://github.com/rrwick/Minipolish | | [mlst](https://hub.docker.com/r/staphb/mlst)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/mlst)](https://hub.docker.com/r/staphb/mlst) |
      • 2.16.2
      • 2.17.6
      • 2.19.0
      • 2.22.0
      • 2.22.1
      • 2.23.0
      • [2.23.0-2023-07 (databases updated July 2023)](mlst/2.23.0-2023-07/)
      • [2.23.0-2023-08 (databases updated Aug 2023)](mlst/2.23.0-2023-08/)
      • [2.23.0-2024-01 (databases updated Jan 2024)](mlst/2.23.0-2024-01/)
      • [2.23.0-2024-03 (databases updated March 2024)](mlst/2.23.0-2024-03/)
      | https://github.com/tseemann/mlst | | [Mugsy](https://hub.docker.com/r/staphb/mugsy)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/mugsy)](https://hub.docker.com/r/staphb/mugsy) |
      • 1r2.3
      | http://mugsy.sourceforge.net/ | | [MultiQC](https://hub.docker.com/r/staphb/multiqc)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/multiqc)](https://hub.docker.com/r/staphb/multiqc) |
      • 1.7
      • [1.8](./multiqc/1.8/)
      • [1.18](./multiqc/1.18/)
      • [1.19](./multiqc/1.19/)
      | https://github.com/ewels/MultiQC | | [Mummer](https://hub.docker.com/r/staphb/mummer)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/mummer)](https://hub.docker.com/r/staphb/mummer) |
      • 4.0.0
      • 4.0.0 + RGDv2
      • 4.0.0 + RGDv2 + gnuplot
      | https://github.com/mummer4/mummer | | [Mykrobe + Genotyphi + sonneityping](https://hub.docker.com/r/staphb/mykrobe)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/mykrobe)](https://hub.docker.com/r/staphb/mykrobe) |
      • 0.11.0 (Mykrobe) & 1.9.1 (Genotyphi)
      • 0.12.1 (Mykrobe) & 1.9.1 (Genotyphi) & v20210201 (sonneityping)
      • 0.12.1 (Mykrobe) & 2.0 (Genotyphi) & v20210201 (sonneityping)
      • [0.12.2 (Mykrobe) & 2.0 (Genotyphi) & v20210201 (sonneityping)](mykrobe/0.12.2/)
      • [0.13.0](./mykrobe/0.13.0)
      | https://github.com/Mykrobe-tools/mykrobe
      https://github.com/typhoidgenomics/genotyphi
      https://github.com/katholt/sonneityping | | [NanoPlot](https://hub.docker.com/r/staphb/nanoplot)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/nanoplot)](https://hub.docker.com/r/staphb/nanoplot) |
      • [1.27.0](./nanoplot/1.27.0/)
      • [1.29.0](./nanoplot/1.29.0/)
      • [1.30.1](./nanoplot/1.30.1/)
      • [1.32.0](./nanoplot/1.32.0/)
      • [1.33.0](./nanoplot/1.33.0/)
      • [1.40.0](./nanoplot/1.40.0/)
      • [1.41.6](./nanoplot/1.41.6/)
      • [1.42.0](./nanoplot/1.42.0/)
      | https://github.com/wdecoster/NanoPlot | | [ngmaster](https://hub.docker.com/r/staphb/ngmaster)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ngmaster)](https://hub.docker.com/r/staphb/ngmaster) |
      • 0.5.8
      • 1.0.0
      | https://github.com/MDU-PHL/ngmaster | | [NCBI Datasets](https://hub.docker.com/r/staphb/ncbi-datasets)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ncbi-datasets)](https://hub.docker.com/r/staphb/ncbi-datasets) |
      Click to see all datasets versions **datasets versions**
      • [13.31.0](./ncbi-datasets/13.31.0/)
      • [13.35.0](./ncbi-datasets/13.35.0/)
      • [13.43.2](./ncbi-datasets/13.43.2/)
      • [14.0.0](./ncbi-datasets/14.0.0/)
      • [14.3.0](./ncbi-datasets/14.3.0/)
      • [14.7.0](./ncbi-datasets/14.7.0/)
      • [14.13.2](./ncbi-datasets/14.13.2/)
      • [14.20.0](./ncbi-datasets/14.20.0/)
      • [14.27.0](ncbi-datasets/14.27.0/)
      • [15.1.0](ncbi-datasets/15.1.0/)
      • [15.2.0](ncbi-datasets/15.2.0/)
      • [15.11.0](ncbi-datasets/15.11.0/)
      • [15.27.1](ncbi-datasets/15.27.1/)
      • [15.31.0](ncbi-datasets/15.31.1/)
      • [16.2.0](ncbi-datasets/16.2.0/)
      • [16.8.1](./ncbi-datasets/16.8.1/)
      • [16.10.3](./ncbi-datasets/16.10.3/)
      | [https://github.com/ncbi/datasets](https://github.com/ncbi/datasets)
      [https://www.ncbi.nlm.nih.gov/datasets/docs/v1/](https://www.ncbi.nlm.nih.gov/datasets/docs/v1/) | | [NCBI AMRFinderPlus](https://hub.docker.com/r/staphb/ncbi-amrfinderplus)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ncbi-amrfinderplus)](https://hub.docker.com/r/staphb/ncbi-amrfinderplus) | **AMRFinderPlus & database verion**
      Click to see AMRFinderplus v3.11.4 and older versions!
      • 3.1.1b
      • 3.8.4
      • 3.8.28
      • 3.9.3
      • 3.9.8
      • 3.10.1
      • 3.10.5
      • 3.10.16
      • 3.10.20
      • 3.10.24
      • 3.10.30
      • 3.10.36
      • 3.10.42
      • 3.11.2 & 2022-12-19.1
      • [3.11.2 & 2023-02-23.1](ncbi-amrfinderplus/3.11.2-2023-02-23.1/)
      • [3.11.4 & 2023-02-23.1](ncbi-amrfinderplus/3.11.4-2023-02-23.1/)
      • [3.11.8 & 2023-02-23.1](ncbi-amrfinderplus/3.11.8-2023-02-23.1/)
      • [3.11.11 & 2023-04-17.1](ncbi-amrfinderplus/3.11.11-2023-04-17.1)
      • [3.11.14 & 2023-04-17.1](ncbi-amrfinderplus/3.11.14-2023-04-17.1/)
      • [3.11.17 & 2023-07-13.2](ncbi-amrfinderplus/3.11.17-2023-07-13.2/)
      • [3.11.18 & 2023-08-08.2](ncbi-amrfinderplus/3.11.18-2023-08-08.2/)
      • [3.11.20 & 2023-09-26.1](ncbi-amrfinderplus/3.11.20-2023-09-26.1/)
      • [3.11.26 & 2023-11-15.1](ncbi-amrfinderplus/3.11.26-2023-11-15.1/)
      • [3.12.8 & 2024-01-31.1](ncbi-amrfinderplus/3.12.8-2024-01-31.1/)
      | [https://github.com/ncbi/amr](https://github.com/ncbi/amr) | | [NCBI table2asn](https://hub.docker.com/r/staphb/ncbi-table2asn)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ncbi-table2asn)](https://hub.docker.com/r/staphb/ncbi-table2asn) |
      • [1.26.678](./ncbi-table2asn/1.26.678/)
      • [1.28.943](./ncbi-table2asn/1.28.943/)
      | [https://www.ncbi.nlm.nih.gov/genbank/table2asn/](https://www.ncbi.nlm.nih.gov/genbank/table2asn/)
      [https://ftp.ncbi.nlm.nih.gov/asn1-converters/versions/2022-06-14/by_program/table2asn/](https://ftp.ncbi.nlm.nih.gov/asn1-converters/versions/2022-06-14/by_program/table2asn/) | | [ONTime](https://hub.docker.com/r/staphb/ontime)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ontime)](https://hub.docker.com/r/staphb/ontime) |
      • [0.2.3](ontime/0.2.3/)
      • [0.3.1](ontime/0.3.1/)
      | https://github.com/mbhall88/ontime | | [OrthoFinder](https://hub.docker.com/r/staphb/orthofinder)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/orthofinder)](https://hub.docker.com/r/staphb/orthofinder) |
      • 2.17
      | https://github.com/davidemms/OrthoFinder | | [Panaroo](https://hub.docker.com/r/staphb/panaroo)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/panaroo)](https://hub.docker.com/r/staphb/panaroo) |
      • [1.2.10](panaroo/1.2.10/)
      • [1.3.4](panaroo/1.3.4/)
      | (https://hub.docker.com/r/staphb/panaroo) | | [Pangolin](https://hub.docker.com/r/staphb/pangolin)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pangolin)](https://hub.docker.com/r/staphb/pangolin) |
      Click to see Pangolin v4.2 and older versions! **Pangolin version & pangoLEARN data release date**
      • 1.1.14
      • 2.0.4 & 2020-07-20
      • 2.0.5 & 2020-07-20
      • 2.1.1 & 2020-12-17
      • 2.1.3 & 2020-12-17
      • 2.1.6 & 2021-01-06
      • 2.1.7 & 2021-01-11
      • 2.1.7 & 2021-01-20
      • 2.1.8 & 2021-01-22
      • 2.1.10 & 2021-02-01
      • 2.1.11 & 2021-02-01
      • 2.1.11 & 2021-02-05
      • 2.2.1 & 2021-02-06
      • 2.2.2 & 2021-02-06
      • 2.2.2 & 2021-02-11
      • 2.2.2 & 2021-02-12
      • 2.3.0 & 2021-02-12
      • 2.3.0 & 2021-02-18
      • 2.3.0 & 2021-02-21
      • 2.3.2 & 2021-02-21
      • 2.3.3 & 2021-03-16
      • 2.3.4 & 2021-03-16
      • 2.3.5 & 2021-03-16
      • 2.3.6 & 2021-03-16
      • 2.3.6 & 2021-03-29
      • 2.3.8 & 2021-04-01
      • 2.3.8 & 2021-04-14
      • 2.3.8 & 2021-04-21
      • 2.3.8 & 2021-04-23
      • 2.4 & 2021-04-28
      • 2.4.1 & 2021-04-28
      • 2.4.2 & 2021-04-28
      • 2.4.2 & 2021-05-10
      • 2.4.2 & 2021-05-11
      • 2.4.2 & 2021-05-19
      • 3.0.5 & 2021-06-05
      • 3.1.3 & 2021-06-15
      • 3.1.5 & 2021-06-15
      • 3.1.5 & 2021-07-07-2
      • 3.1.7 & 2021-07-09
      • 3.1.8 & 2021-07-28
      • 3.1.10 & 2021-07-28
      • 3.1.11 & 2021-08-09
      • 3.1.11 & 2021-08-24
      • 3.1.11 & 2021-09-17
      • 3.1.14 & 2021-09-28
      • 3.1.14 & 2021-10-13
      • 3.1.16 & 2021-10-18
      • 3.1.16 & 2021-11-04
      • 3.1.16 & 2021-11-09
      • 3.1.16 & 2021-11-18
      • 3.1.16 & 2021-11-25
      • 3.1.17 & 2021-11-25
      • 3.1.17 & 2021-12-06
      • 3.1.17 & 2022-01-05
      • 3.1.18 & 2022-01-20
      • 3.1.19 & 2022-01-20
      • 3.1.20 & 2022-02-02
      • 3.1.20 & 2022-02-28
      **Pangolin version & pangolin-data version**
      • 4.0 & 1.2.133
      • 4.0.1 & 1.2.133
      • 4.0.2 & 1.2.133
      • 4.0.3 & 1.2.133
      • 4.0.4 & 1.2.133
      • 4.0.5 & 1.3
      • 4.0.6 & 1.6
      • 4.0.6 & 1.8
      • 4.0.6 & 1.9
      • 4.1.1 & 1.11
      • 4.1.2 & 1.12
      • 4.1.2 & 1.13
      • 4.1.2 & 1.14
      • 4.1.3 & 1.15.1
      • 4.1.3 & 1.16
      • 4.1.3 & 1.17
      • 4.2 & 1.18
      • 4.2 & 1.18.1
      • 4.2 & 1.18.1.1
      • 4.2 & 1.19
      **Pangolin version & pangolin-data version**
      • [4.3 & 1.20](pangolin/4.3-pdata-1.20/)
      • [4.3 & 1.21](pangolin/4.3-pdata-1.21/)
      • [4.3.1 & 1.22](pangolin/4.3.1-pdata-1.22/)
      • [4.3.1 & 1.23](pangolin/4.3.1-pdata-1.23/)
      • [4.3.1 & 1.23.1](pangolin/4.3.1-pdata-1.23.1/)
      • [4.3.1 & 1.23.1 with XDG_CACHE_HOME=/tmp](pangolin/4.3.1-pdata-1.23.1-1/)
      • [4.3.1 & 1.24](pangolin/4.3.1-pdata-1.24/)
      • [4.3.1 & 1.25.1](pangolin/4.3.1-pdata-1.25.1/)
      • [4.3.1 & 1.26](pangolin/4.3.1-pdata-1.26/)
      • [4.3.1 & 1.27](pangolin/4.3.1-pdata-1.27/)
      | https://github.com/cov-lineages/pangolin
      https://github.com/cov-lineages/pangoLEARN
      https://github.com/cov-lineages/pango-designation
      https://github.com/cov-lineages/scorpio
      https://github.com/cov-lineages/constellations
      https://github.com/cov-lineages/lineages (archived)
      https://github.com/hCoV-2019/pangolin (archived) | | [parallel-perl](https://hub.docker.com/r/staphb/parallel-perl)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/parallel-perl)](https://hub.docker.com/r/staphb/parallel-perl) |
      • 20200722
      | https://www.gnu.org/software/parallel | | [parsnp](https://hub.docker.com/r/staphb/parsnp)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/parsnp)](https://hub.docker.com/r/staphb/parsnp) |
      • [1.5.6](./parsnp/1.5.6/)
      • [2.0.4](./parsnp/2.0.4/)
      | https://github.com/marbl/parsnp | | [pasty](https://hub.docker.com/r/staphb/pasty)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pasty)](https://hub.docker.com/r/staphb/pasty) |
      • 1.0.2
      • [1.0.3](pasty/1.0.3/)
      | https://github.com/rpetit3/pasty | | [pbmm2](https://hub.docker.com/r/staphb/pbmm2)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pbmm2)](https://hub.docker.com/r/staphb/pbmm2) |
      • [1.13.1](./pbmm2/1.13.1/)
      | https://github.com/PacificBiosciences/pbmm2 | | [Pavian](https://hub.docker.com/r/staphb/pavian)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pavian)](https://hub.docker.com/r/staphb/pavian) |
      • [1.2.1](pavian/1.2.1/)
      | https://github.com/fbreitwieser/pavian | | [pbptyper](https://hub.docker.com/r/staphb/pbptyper)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pbptyper)](https://hub.docker.com/r/staphb/pbptyper) |
      • 1.0.0
      • 1.0.1
      • 1.0.4
      | https://github.com/rpetit3/pbptyper | | [pbtk](https://hub.docker.com/r/staphb/pbtk)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pbtk)](https://hub.docker.com/r/staphb/pbtk) |
      • [3.1.1](./pbtk/3.1.1/)
      | https://github.com/PacificBiosciences/pbtk | | [Phyml](https://hub.docker.com/r/staphb/phyml)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/phyml)](https://hub.docker.com/r/staphb/phyml) |
      • 3.3.20220408
      | https://github.com/stephaneguindon/phyml | | [phyTreeViz](https://hub.docker.com/r/staphb/phytreeviz)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/phytreeviz)](https://hub.docker.com/r/staphb/phytreeviz) |
      • [0.1.0](./phytreeviz/0.1.0/)
      • [0.2.0](./phytreeviz/0.2.0/)
      | https://github.com/moshi4/phyTreeViz/ | | [Piggy](https://hub.docker.com/r/staphb/piggy)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/piggy)](https://hub.docker.com/r/staphb/piggy) |
      • 1.5
      | https://github.com/harry-thorpe/piggy | | [Pilon](https://hub.docker.com/r/staphb/pilon)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pilon)](https://hub.docker.com/r/staphb/pilon) |
      • 1.23.0
      • 1.24
      | https://github.com/broadinstitute/pilon | | [Piranha](https://hub.docker.com/r/staphb/piranha)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/piranha)](https://hub.docker.com/r/staphb/piranha) |
      • 1.0.4
      | https://github.com/polio-nanopore/piranha | | [PlasmidFinder](https://hub.docker.com/r/staphb/plasmidfinder)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/plasmidfinder)](https://hub.docker.com/r/staphb/plasmidfinder) |
      • [2.1.6](./plasmidfinder/2.1.6/)
      • [2.1.6_2024-03-07](./plasmidfinder/2.1.6_2024-03-07/)
      | https://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/ | | [PlasmidSeeker](https://hub.docker.com/r/staphb/plasmidseeker)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/plasmidseeker)](https://hub.docker.com/r/staphb/plasmidseeker) |
      • 1.0
      • 1.3
      | https://github.com/bioinfo-ut/PlasmidSeeker | | [pmga](https://hub.docker.com/r/staphb/pmga/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pmga)](https://hub.docker.com/r/staphb/pmga) |
      • 3.0.2
      | https://github.com/rpetit3/pmga | | [PolkaPox](https://hub.docker.com/r/staphb/polkapox/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/polkapox)](https://hub.docker.com/r/staphb/polkapox) |
      • [1.0.0-beta](./polkapox/1.0.0-beta/)
      | https://github.com/CDCgov/polkapox | | [polypolish](https://hub.docker.com/r/staphb/polypolish/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/polypolish)](https://hub.docker.com/r/staphb/polypolish) |
      • [0.5.0](./polypolish/0.5.0/)
      • [0.6.0](./polypolish/0.6.0/)
      | https://github.com/rrwick/Polypolish | | [PopPUNK](https://hub.docker.com/r/staphb/poppunk/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/poppunk)](https://hub.docker.com/r/staphb/poppunk) |
      • [2.4.0](./poppunk/2.4.0/)
      • [2.5.0](./poppunk/2.5.0/)
      • [2.6.0](./poppunk/2.6.0/)
      • [2.6.2](./poppunk/2.6.2/)
      • [2.6.3](./poppunk/2.6.3/)
      | https://github.com/bacpop/PopPUNK | | [Porechop](https://hub.docker.com/r/staphb/porechop/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/porechop)](https://hub.docker.com/r/staphb/porechop) |
      • 0.2.4
      | https://github.com/rrwick/Porechop | | [PPanGGOLiN](https://hub.docker.com/r/staphb/ppanggolin/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ppanggolin)](https://hub.docker.com/r/staphb/ppanggolin) |
      • [1.2.105](./ppanggolin/1.2.105/)
      • [2.0.3](./ppanggolin/2.0.3/)
      | https://github.com/labgem/PPanGGOLiN | | [Prokka](https://hub.docker.com/r/staphb/prokka/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/prokka)](https://hub.docker.com/r/staphb/prokka) |
      • 1.13.4
      • 1.14.0
      • 1.14.5
      • 1.14.6
      | https://github.com/tseemann/prokka | | [pyCirclize](https://hub.docker.com/r/staphb/pycirclize/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pycirclize)](https://hub.docker.com/r/staphb/pycirclize) |
      • [1.0.0](pycirclize/1.0.0/)
      • [1.2.0](./pycirclize/1.2.0/)
      | https://github.com/moshi4/pyCirclize | | [pyGenomeViz](https://hub.docker.com/r/staphb/pygenomeviz/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pygenomeviz)](https://hub.docker.com/r/staphb/pygenomeviz) |
      • 0.2.2
      • 0.3.2
      • [0.4.2](pygenomeviz/0.4.2/)
      • [0.4.3](pygenomeviz/0.4.3/)
      • [0.4.4](pygenomeviz/0.4.4/)
      | https://github.com/moshi4/pyGenomeViz | | [pyMLST](https://hub.docker.com/r/staphb/pymlst/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pymlst)](https://hub.docker.com/r/staphb/pymlst) |
      • [2.1.5](./pymlst/2.1.5/)
      • [2.1.6](./pymlst/2.1.6/)
      | https://github.com/bvalot/pyMLST | | [pypolca](https://hub.docker.com/r/staphb/pypolca/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/pypolca)](https://hub.docker.com/r/staphb/pypolca) |
      • [0.3.1](./pypolca/0.3.1/)
      | https://github.com/gbouras13/pypolca | | [QUAST](https://hub.docker.com/r/staphb/quast/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/quast)](https://hub.docker.com/r/staphb/quast) |
      • 5.0.0
      • 5.0.2
      • [5.2.0](./quast/5.2.0)
      • [5.2.0-slim](./quast/5.2.0-slim)
      | https://github.com/ablab/quast | | [QuickSNP](https://hub.docker.com/r/staphb/quicksnp/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/quicksnp)](https://hub.docker.com/r/staphb/quicksnp) |
      • 1.0.1
      | https://github.com/k-florek/QuickSNP | | [racon](https://hub.docker.com/r/staphb/racon)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/racon)](https://hub.docker.com/r/staphb/racon)|
      • [1.4.3](./racon/1.4.3/)
      • [1.4.20](./racon/1.4.20/)
      • [1.5.0](./racon/1.5.0/)
      |
    • https://github.com/lbcb-sci/racon
    • https://github.com/isovic/racon (ARCHIVED)
    • | | [rasusa](https://hub.docker.com/r/staphb/rasusa/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/rasusa)](https://hub.docker.com/r/staphb/rasusa) |
      • [0.1.0](./rasusa/0.1.0/)
      • [0.2.0](./rasusa/0.2.0/)
      • [0.3.0](./rasusa/0.3.0/)
      • [0.6.0](./rasusa/0.6.0/)
      • [0.7.0](./rasusa/0.7.0/)
      • [0.8.0](./rasusa/0.8.0/)
      | https://github.com/mbhall88/rasusa | | [raven](https://hub.docker.com/r/staphb/raven/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/raven)](https://hub.docker.com/r/staphb/raven) |
      • 1.5.1
      • 1.8.1
      • [1.8.3](./raven/1.8.3)
      | https://github.com/lbcb-sci/raven | | [RAxML](https://hub.docker.com/r/staphb/raxml/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/raxml)](https://hub.docker.com/r/staphb/raxml) |
      • 8.2.12 (RAxML) and 0.9.0 (RAxML Next Generation)
      | https://github.com/stamatak/standard-RAxML
      https://github.com/amkozlov/raxml-ng | | [ResFinder](https://hub.docker.com/r/staphb/resfinder/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/resfinder)](https://hub.docker.com/r/staphb/resfinder) |
      • [4.1.1](./resfinder/4.1.11/)
      • [4.5.0](./resfinder/4.5.0/)
      | https://bitbucket.org/genomicepidemiology/resfinder/src/master/ | | [Roary](https://hub.docker.com/r/staphb/roary/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/roary)](https://hub.docker.com/r/staphb/roary) |
      • 3.12.0
      • 3.13.0
      | https://github.com/sanger-pathogens/Roary | | [SalmID](https://hub.docker.com/r/staphb/salmid)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/salmid)](https://hub.docker.com/r/staphb/salmid) |
      • 0.1.23
      | https://github.com/hcdenbakker/SalmID | | [samclip](https://hub.docker.com/r/staphb/samclip)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/samclip)](https://hub.docker.com/r/staphb/samclip) |
      • [0.4.0](./samclip/0.4.0/)
      | https://github.com/tseemann/samclip | | [Samtools](https://hub.docker.com/r/staphb/samtools)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/samtools)](https://hub.docker.com/r/staphb/samtools) |
      • [1.9](./samtools/1.9/)
      • [1.10](./samtools/1.10/)
      • [1.11](./samtools/1.11/)
      • [1.12](./samtools/1.12/)
      • [1.13](./samtools/1.13/)
      • [1.14](./samtools/1.14/)
      • [1.15](./samtools/1.15/)
      • [1.16](./samtools/1.16/)
      • [1.16.1](./samtools/1.16.1/)
      • [1.17](./samtools/1.17/)
      • [1.17-2023-06](./samtools/1.17-2023-06/)
      • [1.18](./samtools/1.18/)
      • [1.19](./samtools/1.19/)
      • [1.20](./samtools/1.20/)
      | https://github.com/samtools/samtools | | [SeqKit](https://hub.docker.com/r/staphb/SeqKit)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/seqkit)](https://hub.docker.com/r/staphb/seqkit) |
      • [2.3.1](./seqkit/2.3.1/)
      • [2.6.1](./seqkit/2.6.1/)
      • [2.7.0](./seqkit/2.7.0/)
      • [2.8.0](./seqkit/2.8.0/)
      • [2.8.1](./seqkit/2.8.1/)
      | https://github.com/shenwei356/seqkit | | [SeqSero](https://hub.docker.com/r/staphb/seqsero/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/seqsero)](https://hub.docker.com/r/staphb/seqsero) |
      • 1.0.1
      | https://github.com/denglab/SeqSero | | [SeqSero2](https://hub.docker.com/r/staphb/seqsero2/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/seqsero2)](https://hub.docker.com/r/staphb/seqsero2) |
      • [0.1.0](./seqsero2/0.1.0/)
      • [1.0.0](./seqsero2/1.0.0/)
      • [1.0.2](./seqsero2/1.0.2/)
      • [1.1.0](./seqsero2/1.1.0/)
      • [1.1.1](./seqsero2/1.1.1/)
      • [1.2.1](./seqsero2/1.2.1/)
      • [1.3.1](./seqsero2/1.3.1/)
      | https://github.com/denglab/SeqSero2/ | | [seqtk](https://hub.docker.com/r/staphb/seqtk)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/seqtk)](https://hub.docker.com/r/staphb/seqtk) |
      • [1.3](seqtk/1.3/)
      • [1.4](seqtk/1.4/)
      | https://github.com/lh3/seqtk | | [seqyclean](https://hub.docker.com/r/staphb/seqyclean)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/seqyclean)](https://hub.docker.com/r/staphb/seqyclean) |
      • 1.10.09
      | https://github.com/ibest/seqyclean | | [Seroba](https://hub.docker.com/r/staphb/seroba)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/seroba)](https://hub.docker.com/r/staphb/seroba) |
      • 1.0.0
      • 1.0.2
      | https://github.com/sanger-pathogens/seroba | | [SerotypeFinder](https://hub.docker.com/r/staphb/serotypefinder/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/serotypefinder)](https://hub.docker.com/r/staphb/serotypefinder) |
      • [1.1 (perl version)](./serotypefinder/1.1/)
      • [2.0.1 (python version)](./serotypefinder/2.0.1/)
      • [2.0.2](./serotypefinder/2.0.2/)
      | https://bitbucket.org/genomicepidemiology/serotypefinder/ | | [shigatyper](https://hub.docker.com/r/staphb/shigatyper/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/shigatyper)](https://hub.docker.com/r/staphb/shigatyper) |
      • 2.0.1
      • 2.0.2
      • 2.0.3
      • [2.0.4](shigatyper/2.0.4/)
      • [2.0.5](shigatyper/2.0.5/)
      | https://github.com/CFSAN-Biostatistics/shigatyper | | [ShigEiFinder](https://hub.docker.com/r/staphb/shigeifinder/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/shigeifinder)](https://hub.docker.com/r/staphb/shigeifinder) |
      • [1.3.2](shigeifinder/1.3.2/)
      • [1.3.3](shigeifinder/1.3.3/)
      • [1.3.5](shigeifinder/1.3.5/)
      | https://github.com/LanLab/ShigEiFinder | | [Shovill](https://hub.docker.com/r/staphb/shovill/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/shovill)](https://hub.docker.com/r/staphb/shovill) |
      • 1.0.4
      • 1.1.0
      | https://github.com/tseemann/shovill | | [Shovill-se](https://hub.docker.com/r/staphb/shovill-se/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/shovill-se)](https://hub.docker.com/r/staphb/shovill-se) |
      • 1.1.0
      | https://github.com/rpetit3/shovill/tree/v1.1.0se | | [SISTR](https://hub.docker.com/r/staphb/sistr/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/sistr)](https://hub.docker.com/r/staphb/sistr) |
      • 1.0.2
      • 1.1.1
      | https://github.com/phac-nml/sistr_cmd | | [SKA](https://hub.docker.com/r/staphb/ska/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ska)](https://hub.docker.com/r/staphb/ska) |
      • 1.0
      | https://github.com/simonrharris/SKA | | [SKA2](https://hub.docker.com/r/staphb/ska2/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/ska2)](https://hub.docker.com/r/staphb/ska2) |
      • [0.3.6](./ska2/0.3.6/)
      • [0.3.7](./ska2/0.3.7/)
      | https://github.com/bacpop/ska.rust | | [skani](https://github.com/bluenote-1577/skani)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/skani)](https://hub.docker.com/r/staphb/skani) |
      • [0.2.0](./skani/0.2.0)
      • [0.2.1](./skani/0.2.1)
      | https://github.com/bluenote-1577/skani | | [SKESA](https://hub.docker.com/r/staphb/skesa)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/skesa)](https://hub.docker.com/r/staphb/skesa) |
      • [2.3.0](./skesa/2.3.0/)
      • [2.4.0 (`gfa_connector` & `kmercounter` included)](./skesa/2.4.0/)
      • [skesa.2.4.0_saute.1.3.0_2 (also known as 2.5.1)](./skesa/skesa.2.4.0_saute.1.3.0_2/)
      | https://github.com/ncbi/SKESA | | [Smalt](https://hub.docker.com/r/staphb/smalt)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/smalt)](https://hub.docker.com/r/staphb/smalt) |
      • 0.7.6
      | https://www.sanger.ac.uk/tool/smalt-0/ | | [snpeff](https://hub.docker.com/r/staphb/snpeff)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/snpeff)](https://hub.docker.com/r/staphb/snpeff) |
      • 5.1
      • [5.2a](snpeff/5.2a/)
      | https://pcingola.github.io/SnpEff | | [Snippy](https://hub.docker.com/r/staphb/snippy)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/snippy)](https://hub.docker.com/r/staphb/snippy) |
      • 4.4.5
      • 4.5.1
      • 4.6.0
      | https://github.com/tseemann/snippy | | [snp-dists](https://hub.docker.com/r/staphb/snp-dists)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/snp-dists)](https://hub.docker.com/r/staphb/snp-dists) |
      • 0.6.2
      • 0.8.2
      | https://github.com/tseemann/snp-dists | | [SNP-sites](https://hub.docker.com/r/staphb/snp-sites)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/snp-sites)](https://hub.docker.com/r/staphb/snp-sites) |
      • 2.3.3
      • 2.5.1
      | https://github.com/sanger-pathogens/snp-sites | | [SNVPhyl-tools](https://hub.docker.com/r/staphb/snvphyl-tools)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/snvphyl-tools)](https://hub.docker.com/r/staphb/snvphyl-tools) |
      • 1.8.2
      | https://github.com/phac-nml/snvphyl-tools | | [SPAdes](https://hub.docker.com/r/staphb/spades/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/spades)](https://hub.docker.com/r/staphb/spades) |
      • 3.8.2
      • 3.12.0
      • 3.13.0
      • 3.14.0
      • 3.14.1
      • 3.15.0
      • 3.15.1
      • 3.15.2
      • 3.15.3
      • 3.15.4
      • 3.15.5
      | https://github.com/ablab/spades
      http://cab.spbu.ru/software/spades/ | | [SRA-toolkit](https://hub.docker.com/r/staphb/sratoolkit/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/sratoolkit)](https://hub.docker.com/r/staphb/sratoolkit) |
      • 2.9.2
      • [3.0.7](./sratoolkit/3.0.7/)
      | https://github.com/ncbi/sra-tools | | [SRST2](https://hub.docker.com/r/staphb/srst2/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/srst2)](https://hub.docker.com/r/staphb/srst2) |
      • 0.2.0
      • [0.2.0 + custom Vibrio cholerae database](srst2/0.2.0-vibrio-230224/README.md)
      | https://github.com/katholt/srst2 | | [Staramr](https://hub.docker.com/r/staphb/staramr/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/staramr)](https://hub.docker.com/r/staphb/staramr) |
      • [0.5.1](./staramr/0.5.1/)
      • [0.7.1](./staramr/0.7.1/)
      • [0.8.0](./staramr/0.8.0/)
      • [0.10.0](./staramr/0.10.0/)
      | https://github.com/phac-nml/staramr | | [sylph](https://hub.docker.com/r/staphb/sylph)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/sylph)](https://hub.docker.com/r/staphb/sylph) |
      • [0.4.1](./sylph/0.4.1)
      • [0.5.1](./sylph/0.5.1)
      • [0.6.0](./sylph/0.6.0)
      | https://github.com/bluenote-1577/sylph | | [TBProfiler](https://hub.docker.com/r/staphb/tbprofiler/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/tbprofiler)](https://hub.docker.com/r/staphb/tbprofiler) |
      • [4.3.0](./tbprofiler/4.3.0/)
      • [4.4.0](./tbprofiler/4.4.0/)
      • [4.4.2](./tbprofiler/4.4.2/)
      • [5.0.1](tbprofiler/5.0.1/)
      | https://github.com/jodyphelan/TBProfiler | | [TipToft](https://hub.docker.com/r/staphb/tiptoft/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/tiptoft)](https://hub.docker.com/r/staphb/tiptoft) |
      • 1.0.0
      • 1.0.2
      | https://github.com/andrewjpage/tiptoft | | [Tostadas](https://hub.docker.com/r/staphb/tostadas/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/tostadas)](https://hub.docker.com/r/staphb/tostadas) |
      • [0.2.0-beta](./tostadas/0.2.0-beta/)
      • [3.1.0](./tostadas/3.1.0/)
      | https://github.com/CDCgov/tostadas | | [Treemmer](https://hub.docker.com/r/staphb/treemmer/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/treemmer)](https://hub.docker.com/r/staphb/treemmer) |
      • 0.3
      | https://git.scicore.unibas.ch/TBRU/Treemmer (archived, moved to GitHub)
      https://github.com/fmenardo/Treemmer | | [Trimmomatic](https://hub.docker.com/r/staphb/trimmomatic/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/trimmomatic)](https://hub.docker.com/r/staphb/trimmomatic) |
      • 0.38
      • 0.39
      | http://www.usadellab.org/cms/?page=trimmomatic
      https://github.com/usadellab/Trimmomatic | | [Trycycler](https://hub.docker.com/r/staphb/trycycler/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/trycycler)](https://hub.docker.com/r/staphb/trycycler) |
      • [0.3.1](./trycycler/0.3.1/)
      • [0.3.2](./trycycler/0.3.2/)
      • [0.3.3](./trycycler/0.3.3/)
      • [0.5.0](./trycycler/0.5.0/)
      • [0.5.3](./trycycler/0.5.3/)
      • [0.5.4](./trycycler/0.5.4/)
      • [0.5.5](./trycycler/0.5.5/)
      | https://github.com/rrwick/Trycycler | | [Unicycler](https://hub.docker.com/r/staphb/unicycler/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/unicycler)](https://hub.docker.com/r/staphb/unicycler) |
      • 0.4.7
      • 0.4.8
      • 0.4.9
      • 0.5.0
      | https://github.com/rrwick/Unicycler | | [VADR](https://hub.docker.com/r/staphb/vadr/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/vadr)](https://hub.docker.com/r/staphb/vadr) |
      • 1.1
      • 1.1.2
      • 1.1.3
      • 1.2
      • 1.2.1
      • 1.3 & SARS-CoV-2 models 1.3-1
      • 1.3 & SARS-CoV-2 models 1.3-2
      • 1.4 & SARS-CoV-2 models 1.3-2
      • 1.4.1 & SARS-CoV-2 models 1.3-2
      • [1.4.2 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1](vadr/1.4.2/)
      • [1.5 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1](vadr/1.5/)
      • [1.5.1 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1, RSV models 1.5-2](vadr/1.5.1/)
      • [1.6.3 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1, RSV models 1.5-2, Influenza v1.6.3-1](vadr/1.6.3/)
      • [1.6.3 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1, RSV models 1.5-2, Influenza v1.6.3-1, HAV v1.0.0](vadr/1.6.3-hav/)
      • [1.6.3 & SARS-CoV-2 models 1.3-2, MPXV models 1.4.2-1, RSV models 1.5-2, Influenza v1.6.3-2, HAV v1.0.0](vadr/1.6.3-hav-flu2/)
      | https://github.com/nawrockie/vadr (archived, now redirects to ncbi/vadr)
      https://github.com/ncbi/vadr | | [Verkko](https://hub.docker.com/r/staphb/verkko/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/verkko)](https://hub.docker.com/r/staphb/verkko) |
      • [2.0](./verkko/2.0/)
      | https://github.com/marbl/verkko | | [VIBRANT](https://hub.docker.com/r/staphb/vibrant/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/vibrant)](https://hub.docker.com/r/staphb/vibrant) |
      • 1.2.1
      | https://github.com/AnantharamanLab/VIBRANT | | [VIGOR4](https://hub.docker.com/r/staphb/vigor4/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/vigor4)](https://hub.docker.com/r/staphb/vigor4) |
      • 4.1.20190131
      | https://github.com/JCVenterInstitute/VIGOR4 | | [VirSorter2](https://hub.docker.com/r/staphb/virsorter2/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/virsorter2)](https://hub.docker.com/r/staphb/virsorter2/) |
      • 2.1
      | https://github.com/jiarong/VirSorter2 | | [VirulenceFinder](https://hub.docker.com/r/staphb/virulencefinder/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/virulencefinder)](https://hub.docker.com/r/staphb/virulencefinder/) |
      • [2.1.4](virulencefinder/2.0.4/)
      | https://bitbucket.org/genomicepidemiology/virulencefinder/src/master/
      https://bitbucket.org/genomicepidemiology/virulencefinder_db/src/master/ | | [wtdbg2](https://hub.docker.com/r/staphb/wtdbg2/)
      [![docker pulls](https://badgen.net/docker/pulls/staphb/wtdbg2)](https://hub.docker.com/r/staphb/wtdbg2) |
      • 2.5
      | https://github.com/ruanjue/wtdbg2 | You can also view the list of images on Docker hub here: https://hub.docker.com/r/staphb/ ## License * [GNU GPLv3 license](/LICENSE) was added 2020-01-16 * We keep a list of the licenses for the main software within the docker images here: [Program_Licenses.md](/Program_Licenses.md) * Links to licenses for each program should also be listed as a metadata `LABEL` within each dockerfile ## Authors/Maintainers Each Dockerfile lists the author(s)/maintainer(s) as a metadata `LABEL`, but the authors/maintainers of the docker images are: * [@kapsakcj](https://github.com/kapsakcj) * [@k-florek](https://github.com/k-florek) * [@garfinjm](https://github.com/garfinjm) * [@kevinlibuit](https://github.com/kevinlibuit) * [@erinyoung](https://github.com/erinyoung) * [@lskatz](https://github.com/lskatz) * [@stjacqrm](https://github.com/stjacqrm) * [@AbigailShockey](https://github.com/AbigailShockey) * [@andersgs](https://github.com/andersgs) * [@logan-fink](https://github.com/logan-fink) * [@tgallagh](https://github.com/tgallagh) * [@koakeson](https://github.com/koakeson) * [@joacjo](https://github.com/joacjo) * [@rpetit3](https://github.com/rpetit3/) * [@jvhagey](https://github.com/jvhagey) * [@Antonia-Chalka](https://github.com/Antonia-Chalka) * [@MillironX](https://github.com/MillironX) * [@frankambrosio3](https://github.com/frankambrosio3) * [@HNHalstead](https://github.com/HNHalstead) * [@fanninpm](https://github.com/fanninpm) * [@SarahNadeau](https://github.com/SarahNadeau) * [@DOH-HNH0303](https://github.com/DOH-HNH0303) * [@jwarnn](https://github.com/jwarnn) * [@stitam](https://github.com/stitam) * [@tiverson](https://github.com/tives82) * [@sbthandras](https://github.com/sbthandras) * [@idolawoye](https://github.com/idolawoye) * [@michellescribner](https://github.com/michellescribner) * [@cjjossart](https://github.com/cjjossart) * [@jlumpe](https://github.com/jlumpe) * [@kissake](https://github.com/kissake) * [@sage-wright](https://github.com/sage-wright) * [@ankushkgupta](https://github.com/ankushkgupta) * [@kyleoconnell](https://github.com/kyleoconnell) * [@CTindall-1](https://github.com/CTindall-1) * [@hkunerth](https://github.com/hkunerth) * [@eetueklund](https://github.com/eetueklund) * [@wchen190](https://github.com/wchen190) * [@shelby-bennett](https://github.com/shelby-bennett) * [@cjalcorta](https://github.com/cjalcorta) * [@mndoucette](https://github.com/mndoucette) * [@jcw349](https://github.com/jcw349) * [@poojasgupta](https://github.com/poojasgupta) * [@hollygene](https://github.com/hollygene) * [@HarryHung](https://github.com/HarryHung) * [@sam-baird](https://github.com/sam-baird) * [@eproctor118](https://github.com/eproctor118) * [@cimendes](https://github.com/cimendes) * [@golden75](https://github.com/golden75) * [@Kincekara](https://github.com/Kincekara) * [@Haikelnb](https://github.com/Haikelnb) * [@kprus](https://github.com/kprus) * [@arianna-smith](https://github.com/arianna-smith) * [@laura-bankers](https://github.com/laura-bankers) * [@evagunawan](https://github.com/evagunawan) * [@nawrockie](https://github.com/nawrockie) * [@stephenturner](https://github.com/stephenturner)