Skip to content

Commit

Permalink
update tbprofiler version, catch up bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
WhalleyT committed May 21, 2024
1 parent 6d1efb0 commit 121c575
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docker/Dockerfile.tbprofiler-0.9.8
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ COPY resources/tuberculosis.fasta /data/tuberculosis.fasta
USER root
WORKDIR /

ARG TBPROFILER_VER="6.2.0"
ARG TBPROFILER_VER="6.2.1"

# this version is the shortened commit hash on the `master` branch here https://github.com/jodyphelan/tbdb/
# commits are found on https://github.com/jodyphelan/tbdb/commits/master
# this was the latest commit as of 2024-05-01

ARG TBDB_VER="e6a0040"
# this was the latest commit as of 2024-05-21
ARG TBDB_VER="a5e1d48"

# LABEL instructions tag the image with metadata that might be important to the user
LABEL base.image="micromamba:1.3.0"
LABEL dockerfile.version="1"
LABEL dockerfile.version="0.9.8"
LABEL software="tbprofiler"
LABEL software.version="${TBPROFILER_VER}"
LABEL description="The pipeline aligns reads to the H37Rv reference using bowtie2, BWA or minimap2 and then calls variants using bcftools. These variants are then compared to a drug-resistance database."
Expand All @@ -26,6 +25,8 @@ LABEL maintainer="John Arnn"
LABEL maintainer.email="[email protected]"
LABEL maintainer2="Curtis Kapsak"
LABEL maintainer2.email="[email protected]"
LABEL maintainer3="Tom Whalley"
LABEL maintainer3.email="[email protected]"

# Install dependencies via apt-get; cleanup apt garbage
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -54,3 +55,4 @@ WORKDIR /data

#wants full path to reference
RUN tb-profiler update_tbdb --match_ref /data/tuberculosis.fasta --commit ${TBDB_VER}

0 comments on commit 121c575

Please sign in to comment.