Skip to content

Commit

Permalink
Jasmine SV merging tool (#151)
Browse files Browse the repository at this point in the history
* conda build of jasmine
  • Loading branch information
MattWellie authored Jun 25, 2024
1 parent 9f80b87 commit 95ab97e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions images.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ gatk_gcnv = '4.5.0.0'
gatk-sv_issue_661 = 'n_a'
hap-py = '0.3.15'
haplocheckcli = '64293b3481d52025a01a293f6cc891546c30660e'
jasmine = '1.1.5'
mitoreport = '1.1.0'
multipy = '0.16'
multiqc = '1.14'
Expand Down
14 changes: 14 additions & 0 deletions images/jasmine/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM debian:buster-slim

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

RUN apt-get update && apt-get install -y git wget bash bzip2 zip curl && \
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 \
jasminesv=${VERSION} && \
rm -r /root/micromamba/pkgs \

0 comments on commit 95ab97e

Please sign in to comment.