forked from StaPH-B/docker-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
65 lines (55 loc) · 2.01 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
FROM ubuntu:bionic
LABEL base.image="ubuntu:bionic"
LABEL dockerfile.version="1"
LABEL software="Trycycler"
LABEL software.version="0.3.2"
LABEL description="A tool for generating consensus long-read assemblies for bacterial genomes"
LABEL website="https://github.com/rrwick/Trycycler"
LABEL license="https://github.com/rrwick/Trycycler/blob/master/LICENSE"
LABEL maintainer="Curtis Kapsak"
LABEL maintainer.email="[email protected]"
# so apt doesn't ask questions during install
ARG DEBIAN_FRONTEND=noninteractive
# install prerequisites, cleanup apt garbage
# muscle version: 3.8.31
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
gcc \
wget \
curl \
bzip2 \
build-essential \
muscle \
r-base && \
apt-get clean && apt-get autoclean && rm -rf /var/lib/apt/lists/*
# ARGs are arguments that are used during build time. They are no longer availble after image is built.
ARG TRYCYCLER_VER="0.3.2"
ARG MASH_VER="2.2"
ARG MINIMAP2_VER="2.17"
# minimap2
# apt deps: curl bzip2
RUN curl -L https://github.com/lh3/minimap2/releases/download/v${MINIMAP2_VER}/minimap2-${MINIMAP2_VER}_x64-linux.tar.bz2 | tar -jxvf -
# mash
RUN wget https://github.com/marbl/Mash/releases/download/v${MASH_VER}/mash-Linux64-v${MASH_VER}.tar && \
tar -xvf mash-Linux64-v${MASH_VER}.tar && \
rm -rf mash-Linux64-v${MASH_VER}.tar
# install R packages
RUN R -e "install.packages(c('ape',\
'phangorn'),\
repos = 'http://cran.us.r-project.org')"
# Trycycler
# apt deps: muscle gcc
# pip3 install on Trycycler root dir doesn't automatically install numpy scipy or coverage
RUN wget https://github.com/rrwick/Trycycler/archive/v${TRYCYCLER_VER}.tar.gz &&\
mkdir trycycler && \
tar -xzf v${TRYCYCLER_VER}.tar.gz && \
rm v${TRYCYCLER_VER}.tar.gz && \
pip3 install ./Trycycler-${TRYCYCLER_VER} && \
mkdir /data
# set /data as working directory
WORKDIR /data
# set env path variable for installed programs. LC_ALL for singularity compatibility.
ENV PATH="/mash-Linux64-v${MASH_VER}:\
/minimap2-${MINIMAP2_VER}_x64-linux:${PATH}"\
LC_ALL=C