-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
30 lines (22 loc) · 957 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
FROM continuumio/miniconda3:latest
LABEL maintainer "Saad Khan <[email protected]>"
LABEL maintainer "Ryan Forster <[email protected]>"
RUN apt-get -y update && \
apt-get -y upgrade && \
apt-get -y install gcc make g++ curl cmake libhdf5-dev libopenblas-dev
# Install Flappie and runnie, the free versions of Oxford Nanopore's basecallers
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
apt-get install git-lfs
RUN git clone https://github.com/nanoporetech/flappie && \
cd flappie && \
make flappie && \
make runnie && \
cp flappie /bin/flappie && \
cp runnie /bin/runnie && \
rm -rf /flappie
RUN git clone https://github.com/artic-network/artic-ncov2019.git
WORKDIR /artic-ncov2019
RUN conda env create -f environment.yml
RUN mkdir analysis
RUN echo "source activate artic-ncov2019" > ~/.bashrc
ENV PATH /opt/conda/envs/artic-ncov2019/bin:$PATH