Skip to content

Commit

Permalink
GATK version 4.5.0.0 for gCNV (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWellie authored May 15, 2024
1 parent fb3cb2b commit 828d6a8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions images.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fastqe = '0.3.1'
fastqc = '0.11.9'
fraser = '1.12.1'
gatk = '4.2.6.1'
gatk_gcnv = '4.5.0.0'
gatk-sv_issue_661 = 'n_a'
hap-py = '0.3.15'
haplocheckcli = '64293b3481d52025a01a293f6cc891546c30660e'
Expand Down
17 changes: 17 additions & 0 deletions images/gatk_gcnv/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM debian:buster-slim

ENV MAMBA_ROOT_PREFIX /root/micromamba
ENV PATH $MAMBA_ROOT_PREFIX/bin:$PATH
ARG VERSION=${VERSION:-4.5.0.0}

RUN apt-get update && apt-get install -y git wget bash bzip2 zip && \
rm -r /var/lib/apt/lists/* && \
rm -r /var/cache/apt/* && \
wget -qO- https://api.anaconda.org/download/conda-forge/micromamba/0.8.2/linux-64/micromamba-0.8.2-he9b6cbd_0.tar.bz2 | tar -xvj -C /usr/local bin/micromamba && \
mkdir ${MAMBA_ROOT_PREFIX} && \
micromamba install -y --prefix ${MAMBA_ROOT_PREFIX} -c bioconda -c conda-forge \
gatk4=${VERSION} \
bcftools \
google-cloud-sdk \
&& \
rm -r /root/micromamba/pkgs

0 comments on commit 828d6a8

Please sign in to comment.