Skip to content

Commit

Permalink
Adding gcta image
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-harper committed Sep 19, 2024
1 parent 3ffe5e0 commit f6f04bd
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 @@ -17,6 +17,7 @@ fraser = '1.12.1'
gatk = '4.2.6.1'
gatk_gcnv = '4.5.0.0'
gatk-sv_issue_661 = 'n_a'
gcta = '1.94.1'
hap-py = '0.3.15'
haplocheckcli = '64293b3481d52025a01a293f6cc891546c30660e'
jasmine = '1.1.5'
Expand Down
17 changes: 17 additions & 0 deletions images/gcta/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM python:3.10-bullseye

ARG VERSION=${VERSION:-1.94.1}

ENV MAMBA_ROOT_PREFIX /root/micromamba
ENV PATH $MAMBA_ROOT_PREFIX/bin:$PATH

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 \
gcta=${VERSION} \
google-cloud-sdk \
&& \
rm -r /root/micromamba/pkgs

0 comments on commit f6f04bd

Please sign in to comment.