Git Product home page Git Product logo

docker-builds's Introduction

Gitpod ready-to-code

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. 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

Docker image repositories & hosting

We host all of our docker images on two different repositories:

  1. Dockerhub - https://hub.docker.com/r/staphb/
  2. Quay.io - https://quay.io/organization/staphb/

The development process of creating a new image is summarized as follows:

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
Loading

User Guide

The StaPH-B Docker User Guide was created to outline methods and best practices for using and developing docker containers. There are chapters for:

Summarized usage guide for docker

# Build a docker image to the 'test' layer
docker build --tag tool:test --target test <directory to Dockerfile>
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 <local directory>:/data tool:version <command>
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

Templates

Several template files are provided. These are intended to be copied and edited by contributors.

  1. dockerfile-template/Dockerfile is the basic template useful for most images
  2. dockerfile-template/Dockerfile_mamba is a basic template for using the micromamba base image
  3. 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 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

# Pulling a container from dockerhub (creates a file)
singularity pull --name <name of singularity file> 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 <local directory>:/data <name of singularity file> <command>
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

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.

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, 2, and 3) and Docker documentation (1).

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.

Software Version Link
ABRicate
docker pulls
https://github.com/tseemann/abricate
ACI
docker pulls
https://github.com/erinyoung/ACI
ANIclustermap
docker pulls
https://github.com/moshi4/ANIclustermap
any2fasta
docker pulls
  • 0.4.2
https://github.com/tseemann/any2fasta
ARIBA
docker pulls
https://github.com/sanger-pathogens/ariba
artic
docker pulls
https://github.com/artic-network/fieldbioinformatics
artic-ncov2019
docker pulls
  • 1.3.0
https://github.com/artic-network/fieldbioinformatics
artic-ncov2019-epi2me
docker pulls
  • 0.3.10
https://github.com/epi2me-labs/wf-artic
artic-ncov2019-medaka
docker pulls
  • 1.1.0
https://github.com/artic-network/artic-ncov2019
artic-ncov2019-nanopolish
docker pulls
  • 1.1.0
https://github.com/artic-network/artic-ncov2019
Augur
docker pulls
https://github.com/nextstrain/augur
Auspice
docker pulls
  • 2.12.0
https://github.com/nextstrain/auspice
bakta
docker pulls
https://github.com/oschwengers/bakta
bandage
docker pulls
https://rrwick.github.io/Bandage/
BBTools
docker pulls
https://jgi.doe.gov/data-and-tools/bbtools/
bcftools
docker pulls
https://github.com/samtools/bcftools
bedtools
docker pulls
https://bedtools.readthedocs.io/en/latest/
https://github.com/arq5x/bedtools2
berrywood-report-env
docker pulls
  • 1.0
none
blast+
docker pulls
https://www.ncbi.nlm.nih.gov/books/NBK279690/
bowtie2
docker pulls
http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml
https://github.com/BenLangmead/bowtie2
Bracken
docker pulls
https://ccb.jhu.edu/software/bracken/index.shtml?t=manual
https://github.com/jenniferlu717/Bracken
BUSCO
docker pulls
https://busco.ezlab.org/busco_userguide.html
https://gitlab.com/ezlab/busco
BWA
docker pulls
https://github.com/lh3/bwa
Canu
docker pulls
  • 2.0
  • 2.1.1
  • 2.2
https://canu.readthedocs.io/en/latest/
https://github.com/marbl/canu
Canu-Racon
docker pulls
  • 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
docker pulls
  • 1.0.0
https://github.com/stjacqrm/centroid
CDC-SPN
docker pulls
  • 0.1 (no version)
https://github.com/BenJamesMetcalf/Spn_Scripts_Reference
cfsan-snp-pipeline
docker pulls
  • 2.0.2
  • 2.2.1
https://github.com/CFSAN-Biostatistics/snp-pipeline
CheckM
docker pulls
https://github.com/Ecogenomics/CheckM
Circlator
docker pulls
  • 1.5.6
  • 1.5.5
https://github.com/sanger-pathogens/circlator
Circos
docker pulls
https://circos.ca/
CirculoCov
docker pulls
https://github.com/erinyoung/CirculoCov
Clair3
docker pulls
https://github.com/HKU-BAL/Clair3
Clustalo
docker pulls
  • 1.2.4
http://www.clustal.org/omega/
colorid
docker pulls
  • 0.1.4.3
https://github.com/hcdenbakker/colorid
cutshaw-report-env
docker pulls
  • 1.0.0
https://github.com/VADGS/CutShaw
datasets-sars-cov-2
docker pulls
  • 0.6.2
  • 0.6.3
  • 0.7.2
https://github.com/CDCgov/datasets-sars-cov-2
diamond
docker pulls
https://github.com/bbuchfink/diamond
dnaapler
docker pulls
https://github.com/gbouras13/dnaapler
dragonflye
docker pulls
https://github.com/rpetit3/dragonflye
Dr. PRG
docker pulls
https://mbh.sh/drprg/
DSK
docker pulls
https://gatb.inria.fr/software/dsk/
el_gato
docker pulls
https://github.com/appliedbinf/el_gato
emboss
docker pulls
  • 6.6.0 (no version)
http://emboss.sourceforge.net
emmtyper
docker pulls
  • 0.2.0
https://github.com/MDU-PHL/emmtyper
emm-typing-tool
docker pulls
  • 0.0.1 (no version)
https://github.com/phe-bioinformatics/emm-typing-tool
EToKi
docker pulls
  • 1.2.1
https://github.com/zheminzhou/EToKi
FastANI
docker pulls
https://github.com/ParBLiSS/FastANI
fasten
docker pulls
https://github.com/lskatz/fasten
Fastp
docker pulls
http://opengene.org/fastp/
https://github.com/OpenGene/fastp
FastTree
docker pulls
  • 2.1.11
http://www.microbesonline.org/fasttree/
FastQC
docker pulls
  • 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
docker pulls
  • 0.4.3
  • 0.4.4
  • 1.0.0
  • 1.0.1
https://github.com/rpetit3/fastq-scan
Freebayes
docker pulls
  • 1.3.6
  • 1.3.7
  • 1.3.7
  • 1.3.7
https://github.com/freebayes/freebayes
Filtlong
docker pulls
  • 0.2.0
  • 0.2.1
https://github.com/rrwick/filtlong
FLASH
docker pulls
  • 1.2.11
http://ccb.jhu.edu/software/FLASH
Flye
docker pulls
https://github.com/fenderglass/Flye
Freyja
docker pulls
https://github.com/andersen-lab/Freyja
GAMBIT
docker pulls
  • 0.3.0
  • 0.4.0
  • 0.5.0
  • 1.0.0
https://github.com/jlumpe/gambit
GAMMA
docker pulls
  • 1.4
  • 2.1
  • 2.2
https://github.com/rastanton/GAMMA/
GenoFLU
docker pulls
https://github.com/USDA-VS/GenoFLU
geNomad
docker pulls
https://github.com/apcamargo/genomad
GenoVi
docker pulls
https://github.com/robotoD/GenoVi
gfastats
docker pulls
https://github.com/vgl-hub/gfastats
Gubbins
docker pulls
https://github.com/nickjcroucher/gubbins
heatcluster
docker pulls
https://github.com/DrB-S/heatcluster/tree/main
hmmer
docker pulls
http://hmmer.org/
homopolish
docker pulls
  • 0.4.1
https://github.com/ythuang0522/homopolish/
htslib
docker pulls
https://www.htslib.org/
iqtree
docker pulls
  • 1.6.7
http://www.iqtree.org/
iqtree2
docker pulls
http://www.iqtree.org/
IPA
docker pulls
https://github.com/PacificBiosciences/pbipa
IRMA
docker pulls
  • 1.0.2
  • 1.0.3
  • 1.1.2
  • 1.1.3
  • 1.1.4
https://wonder.cdc.gov/amd/flu/irma/
isPcr
docker pulls
https://users.soe.ucsc.edu/~kent/
iVar
docker pulls
https://github.com/andersen-lab/ivar
Jasmine
docker pulls
https://github.com/PacificBiosciences/jasmine
Kaptive
docker pulls
https://github.com/klebgenomics/Kaptive
Kleborate
docker pulls
https://github.com/katholt/Kleborate/
https://github.com/katholt/Kaptive/
kma
docker pulls
  • 1.2.21
  • 1.4.10 (no database)
  • 1.4.14 (no database)
https://bitbucket.org/genomicepidemiology/kma/
Kraken
docker pulls
  • 1.0
  • 1.1.1
  • 1.1.1 (no database)
https://github.com/DerrickWood/kraken
Kraken2
docker pulls
  • 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 (no db)
https://github.com/DerrickWood/kraken2
KrakenUniq
docker pulls
https://github.com/fbreitwieser/krakenuniq
kSNP3
docker pulls
  • 3.1
https://sourceforge.net/projects/ksnp/
kSNP4
docker pulls
https://sourceforge.net/projects/ksnp/
label
docker pulls
https://wonder.cdc.gov/amd/flu/label
legsta
docker pulls
  • 0.3.7
  • 0.5.1
https://github.com/tseemann/legsta
liftoff
docker pulls
  • 1.6.3
https://github.com/agshumate/Liftoff
lima
docker pulls
https://github.com/PacificBiosciences/barcoding
longshot
docker pulls
https://github.com/pjedge/longshot
Lyve-SET (includes CG-Pipeline scripts and raxml)
docker pulls
  • 1.1.4f
  • 2.0.1
https://github.com/lskatz/lyve-SET https://github.com/lskatz/CG-Pipeline
MAFFT
docker pulls
https://mafft.cbrc.jp/alignment/software/
Mash
docker pulls
  • 2.1
  • 2.2
  • 2.3
https://github.com/marbl/Mash
mashtree
docker pulls
https://github.com/lskatz/mashtree
MaSuRCA
docker pulls
  • 4.0.8
  • 4.0.9
  • 4.1.0
https://github.com/alekseyzimin/masurca
medaka
docker pulls
  • 0.8.1
  • 1.0.1
  • 1.2.0
https://github.com/nanoporetech/medaka
metaphlan
docker pulls
https://github.com/biobakery/MetaPhlAn
MIDAS
docker pulls
  • 1.3.2 (no database)
https://github.com/snayfach/MIDAS
minimap2
docker pulls
https://github.com/lh3/minimap2
minipolish
docker pulls
  • 0.1.3
https://github.com/rrwick/Minipolish
mlst
docker pulls
https://github.com/tseemann/mlst
Mugsy
docker pulls
  • 1r2.3
http://mugsy.sourceforge.net/
MultiQC
docker pulls
https://github.com/MultiQC/MultiQC
Mummer
docker pulls
  • 4.0.0
  • 4.0.0 + RGDv2
  • 4.0.0 + RGDv2 + gnuplot
https://github.com/mummer4/mummer
Mykrobe + Genotyphi + sonneityping
docker pulls
https://github.com/Mykrobe-tools/mykrobe
https://github.com/typhoidgenomics/genotyphi
https://github.com/katholt/sonneityping
NanoPlot
docker pulls
https://github.com/wdecoster/NanoPlot
ngmaster
docker pulls
  • 0.5.8
  • 1.0.0
https://github.com/MDU-PHL/ngmaster
NCBI Datasets
docker pulls
Click to see all datasets versions datasets versions
https://github.com/ncbi/datasets
https://www.ncbi.nlm.nih.gov/datasets/docs/v1/
NCBI AMRFinderPlus
docker pulls
AMRFinderPlus & database verion
Click to see AMRFinderplus v3.11.4 and older versions!
https://github.com/ncbi/amr
NCBI table2asn
docker pulls
https://www.ncbi.nlm.nih.gov/genbank/table2asn/
https://ftp.ncbi.nlm.nih.gov/asn1-converters/versions/2022-06-14/by_program/table2asn/
ONTime
docker pulls
https://github.com/mbhall88/ontime
OrthoFinder
docker pulls
  • 2.17
https://github.com/davidemms/OrthoFinder
Panaroo
docker pulls
(https://hub.docker.com/r/staphb/panaroo)
pango_aliasor
docker pulls
https://github.com/corneliusroemer/pango_aliasor
Pangolin
docker pulls
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
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)
panqc
docker pulls
https://github.com/maxgmarin/panqc/releases/tag/0.4.0
parallel-perl
docker pulls
  • 20200722
https://www.gnu.org/software/parallel
parsnp
docker pulls
https://github.com/marbl/parsnp
pasty
docker pulls
https://github.com/rpetit3/pasty
pbmm2
docker pulls
https://github.com/PacificBiosciences/pbmm2
Pavian
docker pulls
https://github.com/fbreitwieser/pavian
pbptyper
docker pulls
  • 1.0.0
  • 1.0.1
  • 1.0.4
https://github.com/rpetit3/pbptyper
pbtk
docker pulls
https://github.com/PacificBiosciences/pbtk
Phyml
docker pulls
  • 3.3.20220408
https://github.com/stephaneguindon/phyml
phyTreeViz
docker pulls
https://github.com/moshi4/phyTreeViz/
Piggy
docker pulls
  • 1.5
https://github.com/harry-thorpe/piggy
Pilon
docker pulls
  • 1.23.0
  • 1.24
https://github.com/broadinstitute/pilon
Piranha
docker pulls
  • 1.0.4
https://github.com/polio-nanopore/piranha
PlasmidFinder
docker pulls
https://bitbucket.org/genomicepidemiology/plasmidfinder/src/master/
PlasmidSeeker
docker pulls
  • 1.0
  • 1.3
https://github.com/bioinfo-ut/PlasmidSeeker
pmga
docker pulls
  • 3.0.2
https://github.com/rpetit3/pmga
PolkaPox
docker pulls
https://github.com/CDCgov/polkapox
polypolish
docker pulls
https://github.com/rrwick/Polypolish
PopPUNK
docker pulls
https://github.com/bacpop/PopPUNK
Porechop
docker pulls
  • 0.2.4
https://github.com/rrwick/Porechop
PPanGGOLiN
docker pulls
https://github.com/labgem/PPanGGOLiN
Prokka
docker pulls
  • 1.13.4
  • 1.14.0
  • 1.14.5
  • 1.14.6
https://github.com/tseemann/prokka
pyCirclize
docker pulls
https://github.com/moshi4/pyCirclize
pyGenomeViz
docker pulls
https://github.com/moshi4/pyGenomeViz
pyMLST
docker pulls
https://github.com/bvalot/pyMLST
pypolca
docker pulls
https://github.com/gbouras13/pypolca
QUAST
docker pulls
https://github.com/ablab/quast
QuickSNP
docker pulls
  • 1.0.1
https://github.com/k-florek/QuickSNP
racon
docker pulls
  • https://github.com/lbcb-sci/racon
  • https://github.com/isovic/racon (ARCHIVED)
  • rasusa
    docker pulls
    https://github.com/mbhall88/rasusa
    raven
    docker pulls
    https://github.com/lbcb-sci/raven
    RAxML
    docker pulls
    https://github.com/stamatak/standard-RAxML
    RAxML-NG
    docker pulls
    https://github.com/amkozlov/raxml-ng
    ResFinder
    docker pulls
    https://bitbucket.org/genomicepidemiology/resfinder/src/master/
    Roary
    docker pulls
    • 3.12.0
    • 3.13.0
    https://github.com/sanger-pathogens/Roary
    SalmID
    docker pulls
    • 0.1.23
    https://github.com/hcdenbakker/SalmID
    samclip
    docker pulls
    https://github.com/tseemann/samclip
    Samtools
    docker pulls
    https://github.com/samtools/samtools
    SeqKit
    docker pulls
    https://github.com/shenwei356/seqkit
    SeqSero
    docker pulls
    • 1.0.1
    https://github.com/denglab/SeqSero
    SeqSero2
    docker pulls
    https://github.com/denglab/SeqSero2/
    seqtk
    docker pulls
    https://github.com/lh3/seqtk
    seqyclean
    docker pulls
    • 1.10.09
    https://github.com/ibest/seqyclean
    Seroba
    docker pulls
    • 1.0.0
    • 1.0.2
    https://github.com/sanger-pathogens/seroba
    SerotypeFinder
    docker pulls
    https://bitbucket.org/genomicepidemiology/serotypefinder/
    shigatyper
    docker pulls
    https://github.com/CFSAN-Biostatistics/shigatyper
    ShigEiFinder
    docker pulls
    https://github.com/LanLab/ShigEiFinder
    Shovill
    docker pulls
    • 1.0.4
    • 1.1.0
    https://github.com/tseemann/shovill
    Shovill-se
    docker pulls
    • 1.1.0
    https://github.com/rpetit3/shovill/tree/v1.1.0se
    SISTR
    docker pulls
    • 1.0.2
    • 1.1.1
    https://github.com/phac-nml/sistr_cmd
    SKA
    docker pulls
    • 1.0
    https://github.com/simonrharris/SKA
    SKA2
    docker pulls
    https://github.com/bacpop/ska.rust
    skani
    docker pulls
    https://github.com/bluenote-1577/skani
    SKESA
    docker pulls
    https://github.com/ncbi/SKESA
    Smalt
    docker pulls
    • 0.7.6
    https://www.sanger.ac.uk/tool/smalt-0/
    snpeff
    docker pulls
    https://pcingola.github.io/SnpEff
    Snippy
    docker pulls
    • 4.4.5
    • 4.5.1
    • 4.6.0
    https://github.com/tseemann/snippy
    snp-dists
    docker pulls
    • 0.6.2
    • 0.8.2
    https://github.com/tseemann/snp-dists
    SNP-sites
    docker pulls
    • 2.3.3
    • 2.5.1
    https://github.com/sanger-pathogens/snp-sites
    SNVPhyl-tools
    docker pulls
    • 1.8.2
    https://github.com/phac-nml/snvphyl-tools
    SPAdes
    docker pulls
    https://github.com/ablab/spades
    http://cab.spbu.ru/software/spades/
    SRA-toolkit
    docker pulls
    https://github.com/ncbi/sra-tools
    SRST2
    docker pulls
    https://github.com/katholt/srst2
    Staramr
    docker pulls
    https://github.com/phac-nml/staramr
    sylph
    docker pulls
    https://github.com/bluenote-1577/sylph
    TBProfiler
    docker pulls
    https://github.com/jodyphelan/TBProfiler
    TipToft
    docker pulls
    • 1.0.0
    • 1.0.2
    https://github.com/andrewjpage/tiptoft
    Tostadas
    docker pulls
    https://github.com/CDCgov/tostadas
    Treemmer
    docker pulls
    • 0.3
    https://git.scicore.unibas.ch/TBRU/Treemmer (archived, moved to GitHub)
    https://github.com/fmenardo/Treemmer
    Trimmomatic
    docker pulls
    • 0.38
    • 0.39
    http://www.usadellab.org/cms/?page=trimmomatic
    https://github.com/usadellab/Trimmomatic
    Trycycler
    docker pulls
    https://github.com/rrwick/Trycycler
    Unicycler
    docker pulls
    • 0.4.7
    • 0.4.8
    • 0.4.9
    • 0.5.0
    https://github.com/rrwick/Unicycler
    VADR
    docker pulls
    https://github.com/nawrockie/vadr (archived, now redirects to ncbi/vadr)
    https://github.com/ncbi/vadr
    Verkko
    docker pulls
    https://github.com/marbl/verkko
    VIBRANT
    docker pulls
    • 1.2.1
    https://github.com/AnantharamanLab/VIBRANT
    VIGOR4
    docker pulls
    • 4.1.20190131
    https://github.com/JCVenterInstitute/VIGOR4
    Viridian
    docker pulls
    https://github.com/iqbal-lab-org/viridian
    VirSorter2
    docker pulls
    • 2.1
    https://github.com/jiarong/VirSorter2
    VirulenceFinder
    docker pulls
    https://bitbucket.org/genomicepidemiology/virulencefinder/src/master/
    https://bitbucket.org/genomicepidemiology/virulencefinder_db/src/master/
    wtdbg2
    docker pulls
    • 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 was added 2020-01-16
    • We keep a list of the licenses for the main software within the docker images here: 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:

    docker-builds's People

    Contributors

    abigailshockey avatar andersgs avatar cimendes avatar cjalcorta avatar danielevansr avatar dependabot[bot] avatar dhatribadri avatar erinyoung avatar evagunawan avatar fanninpm avatar garfinjm avatar hkunerth avatar hnhalstead avatar idolawoye avatar jcw349 avatar jvhagey avatar jwarnn avatar k-florek avatar kapsakcj avatar kevinlibuit avatar kincekara avatar kittychasenc avatar kprus avatar lskatz avatar sage-wright avatar sam-baird avatar shelby-bennett avatar stitam avatar stjacqrm avatar tives82 avatar

    Stargazers

     avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

    Watchers

     avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

    docker-builds's Issues

    reduce amount of LABEL statements used across all dockerfiles?

    I just learned that you can combine Dockerfile LABEL's. I wonder if this would reduce the amount of layers in an image and thus reduce the overall size? Perhaps not since it is LABEL's are considered metadata and may be treated differently than other Dockerfile commands (RUN, ENV, FROM, etc.)? Any ideas?

    From: https://hub.docker.com/r/greatfireball/canu/~/dockerfile/

    LABEL maintainer="[email protected]" \
          description="Dockerfile providing the canu assembler for long reads" \
          version=${VERSION} \
          org.label-schema.vcs-ref=${VCS_REF} \
          org.label-schema.build-date=${BUILD_DATE} \
          org.label-schema.vcs-url="https://github.com/greatfireball/ime_canu.git"

    LABEL container.version --> LABEL dockerfile.version

    LABEL container.version is super vague. It should be LABEL dockerfile.version. Intended for tracking multiple versions of a dockerfile for a single program (and it's single version).

    For example if I had to make adjustments to the SPAdes 3.14.1 dockerfile (for which there is only one dockerfile version currently), I would bump to LABEL dockerfile.version=2

    fix quast 5.0.2

    TravisCI is failing to build the quast 5.0.2 docker image, and I can't get it to build locally. See travis log here https://travis-ci.com/github/StaPH-B/docker-builds/builds/166582909

    Seems to be an error during the python install script: Step 15/16 : RUN cd /quast-5.0.2 && /quast-5.0.2/setup.py install

    [...]
    Installing icarus.py script to /usr/local/bin
    Installing quast.py script to /usr/local/bin
    
    Installed /usr/local/lib/python2.7/dist-packages/quast-5.0.2-py2.7.egg
    Processing dependencies for quast==5.0.2
    Searching for simplejson
    Reading https://pypi.python.org/simple/simplejson/
    Download error on https://pypi.python.org/simple/simplejson/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) -- Some packages may not be found!
    Couldn't find index page for 'simplejson' (maybe misspelled?)
    Scanning index of all packages (this may take a while)
    Reading https://pypi.python.org/simple/
    No local packages or download links found for simplejson
    error: Could not find suitable distribution for Requirement.parse('simplejson')
    

    Then after adding apt-get install python-simplejson, I get nearly the same error as TravisCI

    Installed /usr/local/lib/python2.7/dist-packages/quast-5.0.2-py2.7.egg
    Processing dependencies for quast==5.0.2
    Searching for joblib
    Reading https://pypi.python.org/simple/joblib/
    Best match: joblib 0.15.1
    Downloading https://files.pythonhosted.org/packages/57/d2/45a038246a0596fb73af64c07e95578764d0fd115ce67f6b41eb457eed39/joblib-0.15.1.tar.gz#sha256=61e49189c84b3c5d99a969d314853f4d1d263316cc694bec17548ebaa9c47b6e
    Processing joblib-0.15.1.tar.gz
    Writing /tmp/easy_install-261ygp/joblib-0.15.1/setup.cfg
    Running joblib-0.15.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-261ygp/joblib-0.15.1/egg-dist-tmp-F56mw2
    Traceback (most recent call last):
      File "/quast-5.0.2/setup.py", line 268, in <module>
        script_args=args,
      File "/usr/lib/python2.7/distutils/core.py", line 151, in setup
        dist.run_commands()
      File "/usr/lib/python2.7/distutils/dist.py", line 953, in run_commands
        self.run_command(cmd)
      File "/usr/lib/python2.7/distutils/dist.py", line 972, in run_command
        cmd_obj.run()
      File "/usr/lib/python2.7/dist-packages/setuptools/command/install.py", line 67, in run
        self.do_egg_install()
      File "/usr/lib/python2.7/dist-packages/setuptools/command/install.py", line 117, in do_egg_install
        cmd.run()
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 414, in run
        self.easy_install(spec, not self.no_deps)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 644, in easy_install
        return self.install_item(None, spec, tmpdir, deps, True)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 695, in install_item
        self.process_distribution(spec, dist, deps)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 740, in process_distribution
        [requirement], self.local_index, self.easy_install
      File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 826, in resolve
        dist = best[req.key] = env.best_match(req, ws, installer)
      File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1092, in best_match
        return self.obtain(req, installer)
      File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 1104, in obtain
        return installer(requirement)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 663, in easy_install
        return self.install_item(spec, dist.location, tmpdir, deps)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 693, in install_item
        dists = self.install_eggs(spec, download, tmpdir)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 873, in install_eggs
        return self.build_and_install(setup_script, setup_base)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 1101, in build_and_install
        self.run_setup(setup_script, setup_base, args)
      File "/usr/lib/python2.7/dist-packages/setuptools/command/easy_install.py", line 1087, in run_setup
        run_setup(setup_script, args)
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 246, in run_setup
        raise
      File "/usr/lib/python2.7/contextlib.py", line 35, in __exit__
        self.gen.throw(type, value, traceback)
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 195, in setup_context
        yield
      File "/usr/lib/python2.7/contextlib.py", line 35, in __exit__
        self.gen.throw(type, value, traceback)
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 166, in save_modules
        saved_exc.resume()
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 141, in resume
        six.reraise(type, exc, self._tb)
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 154, in save_modules
        yield saved
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 195, in setup_context
        yield
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 243, in run_setup
        DirectorySandbox(setup_dir).run(runner)
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 273, in run
        return func()
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 242, in runner
        _execfile(setup_script, ns)
      File "/usr/lib/python2.7/dist-packages/setuptools/sandbox.py", line 46, in _execfile
        exec(code, globals, locals)
      File "/tmp/easy_install-261ygp/joblib-0.15.1/setup.py", line 6, in <module>
        # All Rights Reserved
      File "/tmp/easy_install-261ygp/joblib-0.15.1/joblib/__init__.py", line 113, in <module>
      File "/tmp/easy_install-261ygp/joblib-0.15.1/joblib/memory.py", line 274
        raise new_exc from exc
                         ^
    SyntaxError: invalid syntax
    

    I'm stumped on this one.

    Adjust Trimmomatic container to be more easily callable

    I did this in the Shovill dockerfile, to make trimmomatic callable from the commandline with simply
    docker run staphb/trimmomatic:latest trimmomatic

    # install trimmomatic
    RUN mkdir trimmomatic &&\
      cd trimmomatic &&\
      wget http://www.usadellab.org/cms/uploads/supplementary/Trimmomatic/Trimmomatic-0.38.zip &&\
      unzip Trimmomatic-0.38.zip &&\
      rm -rf Trimmomatic-0.38.zip &&\
      chmod +x Trimmomatic-0.38/trimmomatic-0.38.jar &&\
      echo "#!/bin/bash" >> trimmomatic &&\
      echo "exec java -jar /trimmomatic/Trimmomatic-0.38/trimmomatic-0.38.jar """"$""@"""" " >> trimmomatic &&\
      chmod +x trimmomatic

    saves us from having to do java -jar /path/to/trimmomatic.jar

    add standalone bedtools docker image

    bedtools is in a few other docker images, but it would be good to have a standalone container for bedtools.

    apt-get versions of bedtools are usually old/out-of-date, but there are a few dockerfiles where bedtools is installed from source code in order to get a more recent version

    TY @SESchmedes for the idea!

    Issue running prokka 1.14.5 in singularity

    Just hit an odd problem while running the prokka 1.14.5 docker image using singularity. Not sure if it's a PATH issue or what....

    Singularity prokka.1.14.5.simg:/data> prokka --cpus 16 --outdir /data/prokka/ --force medaka/consensus.fasta --prefix bc04-4013
    [13:39:31] This is prokka 1.14.5
    [13:39:31] Written by Torsten Seemann <[email protected]>
    [13:39:31] Homepage is https://github.com/tseemann/prokka
    [13:39:31] Local time is Thu Jun 18 13:39:31 2020
    [13:39:31] You are pjx8
    [13:39:31] Operating system is linux
    [13:39:31] You have BioPerl 1.006924
    [13:39:31] System has 72 cores.
    [13:39:31] Will use maximum of 16 cores.
    [13:39:31] Annotating as >>> Bacteria <<<
    [13:39:31] Generating locus_tag from 'medaka/consensus.fasta' contents.
    [13:39:31] Setting --locustag GMHEDBAA from MD5 061edbaa40a6cb8a52d91b24d2fb3d33
    [13:39:31] Re-using existing --outdir /data/prokka/
    [13:39:31] Using filename prefix: bc04-4013.XXX
    [13:39:31] Setting HMMER_NCPU=1
    [13:39:31] Writing log to: /data/prokka//bc04-4013.log
    [13:39:31] Command: /prokka-1.14.5/bin/prokka --cpus 16 --outdir /data/prokka/ --force medaka/consensus.fasta --prefix bc04-4013
    [13:39:31] Appending to PATH: /prokka-1.14.5/bin/../binaries/linux
    [13:39:31] Appending to PATH: /prokka-1.14.5/bin/../binaries/linux/../common
    [13:39:31] Appending to PATH: /prokka-1.14.5/bin
    [13:39:31] Looking for 'aragorn' - found /prokka-1.14.5/bin/../binaries/linux/aragorn
    [13:39:31] Determined aragorn version is 001002 from 'ARAGORN v1.2.38 Dean Laslett'
    [13:39:31] Looking for 'barrnap' - found /barrnap-0.9/bin/barrnap
    [13:39:31] Determined barrnap version is 000009 from 'barrnap 0.9'
    [13:39:31] Looking for 'blastp' - found /prokka-1.14.5/bin/../binaries/linux/blastp
    [13:39:32] Determined blastp version is 002009 from 'blastp: 2.9.0+'
    [13:39:32] Looking for 'cmpress' - found /prokka-1.14.5/bin/../binaries/linux/cmpress
    [13:39:32] Determined cmpress version is 001001 from '# INFERNAL 1.1.2 (July 2016)'
    [13:39:32] Looking for 'cmscan' - found /prokka-1.14.5/bin/../binaries/linux/cmscan
    [13:39:32] Determined cmscan version is 001001 from '# INFERNAL 1.1.2 (July 2016)'
    [13:39:32] Looking for 'egrep' - found /bin/egrep
    [13:39:32] Looking for 'find' - found /usr/bin/find
    [13:39:32] Looking for 'grep' - found /bin/grep
    [13:39:32] Looking for 'hmmpress' - found /usr/bin/hmmpress
    [13:39:32] Determined hmmpress version is 003001 from '# HMMER 3.1b2 (February 2015); http://hmmer.org/'
    [13:39:32] Looking for 'hmmscan' - found /usr/bin/hmmscan
    [13:39:32] Determined hmmscan version is 003001 from '# HMMER 3.1b2 (February 2015); http://hmmer.org/'
    [13:39:32] Looking for 'java' - found /usr/bin/java
    [13:39:32] Looking for 'makeblastdb' - found /prokka-1.14.5/bin/../binaries/linux/makeblastdb
    [13:39:33] Determined makeblastdb version is 002009 from 'makeblastdb: 2.9.0+'
    [13:39:33] Looking for 'minced' - found /prokka-1.14.5/bin/../binaries/linux/../common/minced
    [13:39:33] Determined minced version is 002000 from 'minced 0.2.0'
    [13:39:33] Looking for 'parallel' - found /prokka-1.14.5/bin/../binaries/linux/../common/parallel
    [13:39:33] Determined parallel version is 20150122 from 'GNU parallel 20150122'
    [13:39:33] Looking for 'prodigal' - found /prokka-1.14.5/bin/../binaries/linux/prodigal
    [13:39:33] Determined prodigal version is 002006 from 'Prodigal V2.6.3: February, 2016'
    [13:39:33] Looking for 'prokka-genbank_to_fasta_db' - found /prokka-1.14.5/bin/prokka-genbank_to_fasta_db
    [13:39:33] Looking for 'sed' - found /bin/sed
    [13:39:33] Looking for 'tbl2asn' - found /usr/bin/tbl2asn
    [13:39:33] Determined tbl2asn version is 025008 from 'tbl2asn 25.8   arguments:'
    [13:39:33] Using genetic code table 11.
    [13:39:33] Loading and checking input file: medaka/consensus.fasta
    [13:39:34] Wrote 4 contigs totalling 4254266 bp.
    [13:39:34] Predicting tRNAs and tmRNAs
    [13:39:34] Running: aragorn -l -gc11  -w \/data\/prokka\/\/bc04\-4013\.fna
    [13:39:35] 1 tRNA-Ser c[10552,10641] 35 (gga)
    [13:39:35] 2 tRNA-Arg c[14063,14139] 35 (cct)
    [13:39:35] 3 tRNA-Arg c[17344,17420] 35 (acg)
    [13:39:35] 4 tRNA-Ser c[17505,17595] 35 (gct)
    [13:39:35] 5 tRNA-Ser c[17616,17706] 36 (tga)
    [13:39:35] 6 tRNA-Ser c[18013,18103] 35 (gct)
    [13:39:35] 7 tRNA-Ser c[18124,18214] 36 (tga)
    [13:39:35] 8 tRNA-Ala c[27852,27927] 34 (tgc)
    [13:39:35] 9 tRNA-Met c[27931,28007] 35 (cat)
    [13:39:35] 10 tRNA-Glu [75830,75904] 34 (ttc)
    [13:39:35] 11 tRNA-Val [75922,75997] 34 (tac)
    [13:39:35] 12 tRNA-Asp [76007,76083] 35 (gtc)
    [13:39:35] 13 tRNA-Thr [76088,76163] 34 (tgt)
    [13:39:35] 14 tRNA-Glu [76169,76243] 34 (ttc)
    [13:39:35] 15 tRNA-Val [76262,76337] 34 (tac)
    [13:39:35] 16 tRNA-Asp [76345,76421] 35 (gtc)
    [13:39:35] 17 tRNA-Glu [76479,76553] 34 (ttc)
    [13:39:35] 18 tRNA-Val [76571,76646] 34 (tac)
    [13:39:35] 19 tRNA-Asp [76656,76732] 35 (gtc)
    [13:39:35] 20 tRNA-Thr [76737,76812] 34 (tgt)
    [13:39:35] 21 tRNA-Pro c[133358,133433] 34 (tgg)
    [13:39:35] 22 tRNA-Leu [154361,154449] 35 (taa)
    [13:39:35] 23 tRNA-Met [154454,154529] 34 (cat)
    [13:39:35] 24 tRNA-Met [154534,154610] 35 (cat)
    [13:39:35] 25 tRNA-Leu [154642,154730] 35 (taa)
    [13:39:35] 26 tRNA-Met [154735,154810] 34 (cat)
    [13:39:35] 27 tRNA-Met [154864,154939] 34 (cat)
    [13:39:35] 28 tRNA-Met [154950,155026] 35 (cat)
    [13:39:35] 29 tRNA-Met [177873,177949] 35 (cat)
    [13:39:35] 30 tRNA-Ala [177953,178029] 34 (tgc)
    [13:39:35] 31 tRNA-Ile [179843,179919] 35 (gat)
    [13:39:35] 32 tRNA-Asn [183111,183185] 33 (gtt)
    [13:39:35] 33 tRNA-Asn [183213,183287] 33 (gtt)
    [13:39:35] 34 tRNA-Gly [203926,204000] 33 (ccc)
    [13:39:35] 35 tRNA-Thr [204019,204094] 34 (ggt)
    [13:39:35] 36 tRNA-Trp [413153,413228] 34 (cca)
    [13:39:35] 37 tRNA-Pro [484110,484185] 34 (tgg)
    [13:39:35] 38 tRNA-Gly [484193,484266] 33 (tcc)
    [13:39:35] 39 tRNA-Arg [484273,484349] 35 (tct)
    [13:39:35] 40 tRNA-His [484357,484432] 34 (gtg)
    [13:39:35] 41 tRNA-Gln [484437,484511] 33 (ttg)
    [13:39:35] 42 tRNA-Lys [484515,484590] 34 (ttt)
    [13:39:35] 43 tRNA-Leu [484606,484689] 35 (tag)
    [13:39:35] 44 tRNA-Gly [484762,484836] 33 (gcc)
    [13:39:35] 45 tRNA-Gly [484845,484918] 33 (tcc)
    [13:39:35] 46 tRNA-Arg [484925,485001] 35 (tct)
    [13:39:35] 47 tRNA-Lys [485007,485082] 34 (ctt)
    [13:39:35] 48 tRNA-His [485098,485173] 34 (gtg)
    [13:39:35] 49 tRNA-Gln [485178,485252] 33 (ttg)
    [13:39:35] 50 tRNA-Lys [485256,485331] 34 (ttt)
    [13:39:35] 51 tRNA-Leu [485347,485430] 35 (tag)
    [13:39:35] 52 tRNA-Gly [485503,485577] 33 (gcc)
    [13:39:35] 53 tRNA-Gly [485586,485659] 33 (tcc)
    [13:39:35] 54 tRNA-Arg [485666,485742] 35 (tct)
    [13:39:35] 55 tRNA-Lys [485748,485823] 34 (ctt)
    [13:39:35] tRNA [485850,485926] is a pseudo/wacky gene - skipping.
    [13:39:35] 57 tRNA-Gly [485956,486029] 33 (tcc)
    [13:39:35] 58 tRNA-Arg [486054,486130] 35 (tcg)
    [13:39:35] 59 tRNA-Val [593279,593354] 34 (tac)
    [13:39:35] 60 tRNA-Asp [593360,593436] 35 (gtc)
    [13:39:35] 61 tRNA-Phe [593440,593515] 34 (gaa)
    [13:39:35] 62 tRNA-Gly [593520,593594] 33 (gcc)
    [13:39:35] 63 tRNA-Cys [593604,593677] 33 (gca)
    [13:39:35] 64 tRNA-Leu [709714,709800] 35 (caa)
    [13:39:35] 65 tRNA-Leu [741135,741219] 35 (gag)
    [13:39:35] 66 tRNA-SeC [775727,775823] 35 (tca)
    [13:39:35] 67 tRNA-Glu c[3541372,3541446] 34 (ctc)
    [13:39:35] 68 tRNA-Asn c[3617986,3618060] 33 (gtt)
    [13:39:35] 69 tRNA-Ile c[3621268,3621344] 35 (gat)
    [13:39:35] 70 tRNA-Ala c[3621350,3621425] 34 (tgc)
    [13:39:35] 71 tmRNA* c[3831181,3831688] 340,420 AEKVLICSLESRLLGLKCTNNNFCI**
    [13:39:35] tRNA/tmRNA c[3831181,3831688] is too big (>500bp) - skipping.
    [13:39:35] 72 tmRNA c[3831594,3831948] 98,130 ANDNFALAA**
    [13:39:35] 73 tRNA-Gln [3885596,3885670] 33 (ctg)
    [13:39:35] 74 tRNA-Tyr c[3912022,3912106] 35 (gta)
    [13:39:35] 75 tRNA-Thr c[3912112,3912187] 34 (tgt)
    [13:39:35] 76 tRNA-Val c[3912205,3912280] 34 (tac)
    [13:39:35] 77 tRNA-Tyr c[3912294,3912378] 35 (gta)
    [13:39:35] 78 tRNA-Thr c[3912384,3912459] 34 (tgt)
    [13:39:35] 79 tRNA-Cys c[4033292,4033365] 33 (gca)
    [13:39:35] 80 tRNA-Phe c[4040816,4040891] 34 (gaa)
    [13:39:35] 81 tRNA-Phe c[4047878,4047953] 34 (gaa)
    [13:39:35] Found 79 tRNAs
    [13:39:35] Predicting Ribosomal RNAs
    [13:39:35] Running Barrnap with 16 threads
    [13:39:37] 1 contig_1_segment0 28019 5S ribosomal RNA
    [13:39:37] 2 contig_1_segment0 28227 23S ribosomal RNA
    [13:39:37] 3 contig_1_segment0 31345 16S ribosomal RNA
    [13:39:37] 4 contig_1_segment0 173027 16S ribosomal RNA
    [13:39:37] 5 contig_1_segment0 174757 23S ribosomal RNA
    [13:39:37] 6 contig_1_segment0 177751 5S ribosomal RNA
    [13:39:37] 7 contig_1_segment0 178251 16S ribosomal RNA
    [13:39:37] 8 contig_1_segment0 179995 23S ribosomal RNA
    [13:39:37] 9 contig_1_segment0 182988 5S ribosomal RNA
    [13:39:37] 10 contig_1_segment0 3618072 5S ribosomal RNA
    [13:39:37] 11 contig_1_segment0 3618293 23S ribosomal RNA
    [13:39:37] 12 contig_1_segment0 3621566 16S ribosomal RNA
    [13:39:37] 13 contig_1_segment0 4034567 5S ribosomal RNA
    [13:39:37] 14 contig_1_segment0 4034787 23S ribosomal RNA
    [13:39:37] 15 contig_1_segment0 4037906 16S ribosomal RNA
    [13:39:37] 16 contig_1_segment0 4040902 5S ribosomal RNA
    [13:39:37] 17 contig_1_segment0 4041123 23S ribosomal RNA
    [13:39:37] 18 contig_1_segment0 4044245 16S ribosomal RNA
    [13:39:37] 19 contig_1_segment0 4047964 5S ribosomal RNA
    [13:39:37] 20 contig_1_segment0 4048185 23S ribosomal RNA
    [13:39:37] 21 contig_1_segment0 4051306 16S ribosomal RNA
    [13:39:37] Found 21 rRNAs
    [13:39:37] Skipping ncRNA search, enable with --rfam if desired.
    [13:39:37] Total of 99 tRNA + rRNA features
    [13:39:37] Searching for CRISPR repeats
    [13:39:38] CRISPR1 contig_1_segment0 1725351 with 3 spacers
    [13:39:38] CRISPR2 contig_1_segment0 1725765 with 5 spacers
    [13:39:38] CRISPR3 contig_1_segment0 2640089 with 5 spacers
    [13:39:38] CRISPR4 contig_7_segment0 156403 with 17 spacers
    [13:39:38] CRISPR5 contig_7_segment0 157832 with 15 spacers
    [13:39:38] Found 5 CRISPRs
    [13:39:38] Predicting coding sequences
    [13:39:38] Contigs total 4254266 bp, so using single mode
    [13:39:38] Running: prodigal -i \/data\/prokka\/\/bc04\-4013\.fna -c -m -g 11 -p single -f sco -q
    [13:39:48] Excluding CDS which overlaps existing RNA (rRNA) at contig_1_segment0:3618158..3618754 on + strand
    [13:39:48] Excluding CDS which overlaps existing RNA (rRNA) at contig_1_segment0:3618693..3619328 on + strand
    [13:39:48] Found 4532 CDS
    [13:39:48] Connecting features back to sequences
    [13:39:48] Not using genus-specific database. Try --usegenus to enable it.
    [13:39:48] Annotating CDS, please be patient.
    [13:39:48] Will use 16 CPUs for similarity searching.
    [13:39:53] There are still 4532 unannotated CDS left (started with 4532)
    [13:39:53] Will use blast to search against /prokka-1.14.5/db/kingdom/Bacteria/IS with 16 CPUs
    [13:39:53] Running: cat \/data\/prokka\/\/bc04\-4013\.IS\.tmp\.45937\.faa | parallel --gnu --plain -j 16 --block 36506 --recstart '>' --pipe blastp -query - -db /prokka-1.14.5/db/kingdom/Bacteria/IS -evalue 1e-30 -qcov_hsp_perc 90 -num_threads 1 -num_descriptions 1 -num_alignments 1 -seg no > \/data\/prokka\/\/bc04\-4013\.IS\.tmp\.45937\.blast 2> /dev/null
    [13:39:53] Could not run command: cat \/data\/prokka\/\/bc04\-4013\.IS\.tmp\.45937\.faa | parallel --gnu --plain -j 16 --block 36506 --recstart '>' --pipe blastp -query - -db /prokka-1.14.5/db/kingdom/Bacteria/IS -evalue 1e-30 -qcov_hsp_perc 90 -num_threads 1 -num_descriptions 1 -num_alignments 1 -seg no > \/data\/prokka\/\/bc04\-4013\.IS\.tmp\.45937\.blast 2> /dev/null
    

    nanoplot missing python dependency

    Got this error when running the NanoPlot 1.27.0 container:

    2020-03-17 16:37:51,632 Nanoplotter: orca not found, not creating static image of html. See https://github.com/plotly/orca
    2020-03-17 16:37:51,633 Image generation requires the psutil package.
    
    Install using pip:
        $ pip install psutil
    
    Install using conda:
        $ conda install psutil
    Traceback (most recent call last):
      File "/usr/local/lib/python3.5/dist-packages/nanoplotter/plot.py", line 60, in save_static
        pio.write_image(self.fig, self.path.replace('html', 'png'))
      File "/usr/local/lib/python3.5/dist-packages/plotly/io/_orca.py", line 1705, in write_image
        fig, format=format, scale=scale, width=width, height=height, validate=validate
      File "/usr/local/lib/python3.5/dist-packages/plotly/io/_orca.py", line 1482, in to_image
        ensure_server()
      File "/usr/local/lib/python3.5/dist-packages/plotly/io/_orca.py", line 1325, in ensure_server
        """
    ValueError: Image generation requires the psutil package.
    
    Install using pip:
        $ pip install psutil
    
    Install using conda:
        $ conda install psutil
    

    I'll update the 1.27.0 image and make a new image for the latest version available on pypi NanoPlot 1.29.0 https://pypi.org/project/NanoPlot/

    add SPAdes 3.14.1

    this one should be easy to make. I'll make at some point if no one else gets to it.

    To do - make lyveSET container smaller, use less layers

    I found that when I pull the lyveSET v2.0.1 image, it takes much longer to download than the other containers, and seems to have a lot of layers due to the dockerfile. Need to see if we can reduce the number of RUN commands in the dockerfile.

    add bbtools to readme

    ...and any other programs we've added, but forgot to add to the table in the README and Program_licenses.md

    Math::Round not included in lyve-set containers

    It looks like the Math::Round perl module is missing from the lyve-set containers, should be a quick fix with cpanm.

    I have no name!@4e6d93230ba0:/data$ perl -e "use Math::Round qw/nearest/;"
    Can't locate Math/Round.pm in @INC (you may need to install the Math::Round module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at -e line 1.
    BEGIN failed--compilation aborted at -e line 1.
    

    Remove unneeded samtools from seqsero2

    The seqsero2 Dockerfile installs 2 versions of Samtools, one installed with apt-get and the other (v1.9) installed manually.

    The version installed by apt-get is very old, and not necessary to run SeqSero2. It should be removed with the next update.

    Prokka image is missing barrnap for rRNA prediction

    Just noticed that the prokka 1.13.3 image is missing barrnap. Prokka still runs, but cannot predict rRNAs.
    https://github.com/tseemann/barrnap

    Barrnap requires:

    Need to include barrnap and its dependencies in dockerfile for Prokka:

    # add hmmer to list of things to install with apt-get
    RUN apt-get install hmmer gcc
    
    # install bedtools, needs gcc to compile
    RUN wget https://github.com/arq5x/bedtools2/releases/download/v2.27.1/bedtools-2.27.1.tar.gz &&\
        tar -xzf bedtools-2.27.1.tar.gz &&\
        rm bedtools-2.27.1.tar.gz &&\
        cd bedtools2/ &&\
        make
    
    # install barrnap
    RUN wget https://github.com/tseemann/barrnap/archive/0.9.tar.gz &&\
        tar -zxf 0.9.tar.gz &&\
        rm 0.9.tar.gz &&\
        
    ENV PATH="$PATH:/prokka-1.13.3/bin:\
    /bedtools2/bin:\
    /barrnap-0.9/bin"

    Also plan on bumping the dockerfile version to 2 in the dockerfile label

    Prokka and it's dependencies make it quite a large image. One of our largest at ~2.1 GB

    Update Abricate Databases Automatically

    I was wondering if it is possible to have an abricate dockerfile that force updates the abricate databases every time the image is used in a job/script. I discussed this idea a few months back with Curtis and he added version 0.8.13-db. I notice that this does not work how I originally thought it might. The force update lines included in this version does not capture any changes beyond Aug-16 (when this dockerfile was added).

    condense ENV layers into one for all dockerfiles

    This:

    # set PATH and perl local settings
    ENV PATH="${PATH}:/mlst-2.19.0/bin:\
    /ncbi-blast-2.9.0+/bin" \
        LC_ALL=C

    uses one layer to set env variables, where as the below examples adds an unnecessary layer to the docker image:

    ENV PATH="${PATH}:/mlst-2.17.6/bin:\
    /ncbi-blast-2.9.0+/bin"
    
    # set perl locale settings
    ENV LC_ALL=C

    This could be applied across all of our Dockerfiles that has more than one ENV layer

    add legsta 0.5.1

    @garfinjm just FYI Torsten released this yesterday. Not sure if you're interested in upgrading versions or not.

    New dependency - any2fasta. This one is really easy to install:

    # get any2fasta
    RUN cd /usr/local/bin && \
      wget https://raw.githubusercontent.com/tseemann/any2fasta/master/any2fasta && \
      chmod +x any2fasta
    
    # no need to update PATH since it's in /usr/local/bin

    https://github.com/tseemann/legsta/releases/tag/v0.5.1

    add latest version of Medaka

    I started working on a dockerfile, but had issues with git lfs and the large files that are downloaded as part of the repo.

    This one might be a PITA to get building/running correctly :)))))))))))))))))))))))))

    add metaphlan3

    I've never used metaphlan3, but it was requested by @SESchmedes

    I think it would make a great addition to the repository

    Create and add dockerfiles for Samtools and BWA

    These tools are already in the Shovill docker image, but it would be nice to have a smaller, individual image for each

    Will involve code that looks somewhat like this:

    # I'm not sure what the dependencies are for bwa off the top of my head, but they should be minimal.
    
    # install bwa (mem)
    RUN mkdir bwa &&\
      cd bwa &&\
      wget https://github.com/lh3/bwa/releases/download/v0.7.17/bwa-0.7.17.tar.bz2 &&\
      tar -xjf bwa-0.7.17.tar.bz2 &&\
      rm bwa-0.7.17.tar.bz2 &&\
      cd bwa-0.7.17 &&\
      make

    and

    RUN apt-get update && apt-get install -y libncurses5-dev \
      libbz2-dev \
      liblzma-dev \
      libcurl4-gnutls-dev 
    # there may be more, just need to look at the INSTALL file included in the samtools tarball
    
    # install samtools 
    RUN mkdir samtools &&\
      cd samtools &&\
      wget https://github.com/samtools/samtools/releases/download/1.9/samtools-1.9.tar.bz2 &&\
      tar -xjf samtools-1.9.tar.bz2 &&\
      rm samtools-1.9.tar.bz2 &&\
      cd samtools-1.9 &&\
      ./configure &&\
      make &&\
      make install

    tbl2asn expires in all prokka images

    affects the following dockerhub tags: 1.13 , 1.14.0, 1.14.0-cv2, 1.14.5, and latest (yes, all of them...)

    [14:38:46] Looking for 'tbl2asn' - found /prokka-1.14.0/bin/../binaries/linux/tbl2asn
    [tbl2asn] This copy of tbl2asn is more than a year old.  Please download the current version.
    [14:38:46] Determined tbl2asn version is 25.7
    

    Can't wait for Torsten to remove tbl2asn as a dependency

    tseemann/prokka#453

    add Jake as a contributor in README

    I'm waiting to do this until the next commit to the master branch. Since I pushed the PR for SeqSero2 today, all the images are currently being rebuilt by docker-hub.

    jellyfish not found

    Using Singularity and kraken 1.1.1. While attempting to run kraken-build the following error is thrown
    "/opt/kraken/check_for_jellyfish.sh: line 27: jellyfish: command not found"

    Recommend Projects

    • React photo React

      A declarative, efficient, and flexible JavaScript library for building user interfaces.

    • Vue.js photo Vue.js

      ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

    • Typescript photo Typescript

      TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

    • TensorFlow photo TensorFlow

      An Open Source Machine Learning Framework for Everyone

    • Django photo Django

      The Web framework for perfectionists with deadlines.

    • D3 photo D3

      Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

    Recommend Topics

    • javascript

      JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

    • web

      Some thing interesting about web. New door for the world.

    • server

      A server is a program made to process requests and deliver data to clients.

    • Machine learning

      Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

    • Game

      Some thing interesting about game, make everyone happy.

    Recommend Org

    • Facebook photo Facebook

      We are working to build community through open source technology. NB: members must have two-factor auth.

    • Microsoft photo Microsoft

      Open source projects and samples from Microsoft.

    • Google photo Google

      Google โค๏ธ Open Source for everyone.

    • D3 photo D3

      Data-Driven Documents codes.