forked from sanger-pathogens/Bio-ReferenceManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
37 lines (28 loc) · 806 Bytes
/
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
FROM ubuntu:20.04
ARG TAG=2020.06.30.12.05.53.115
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -yq \
dos2unix \
wget \
rsync \
gzip \
python3 \
python3-setuptools \
python3-pip \
cpanminus \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install pyfastaq
#fastaq
#smalt
#bwa
#bowtie2
#samtools
#Picard
RUN cpanm --notest https://github.com/sanger-pathogens/Bio-ReferenceManager/releases/download/v${TAG}/Bio-ReferenceManager-${TAG}.tar.gz
ARG SMALT_VERSION=0.7.4
ARG SMALT_NAME="smalt-${SMALT_VERSION}"
ARG SMALT_ARCHIVE="${SMALT_NAME}.tgz"
ARG SMALT_URL="ftp://ftp.sanger.ac.uk/pub/resources/software/smalt/${SMALT_ARCHIVE}"
RUN wget --progress=dot:giga "${SMALT_URL}" -O - | tar xf - -C /opt