-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
34 lines (31 loc) · 1.26 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
FROM debian:latest
# ORIGINAL MAINTAINER Conda Development Team <conda@continuum.io>
RUN apt-get clean && apt-get -qq update && apt-get -qq -y install curl unzip bzip2 default-jre ca-certificates libgomp1 build-essential zlib1g-dev \
&& curl -L -s -o "/Drop-seq_tools-2.4.0.zip" "https://github.com/broadinstitute/Drop-seq/releases/download/v2.4.0/Drop-seq_tools-2.4.0.zip" \
&& unzip /Drop-seq_tools-2.4.0.zip \
&& rm /Drop-seq_tools-2.4.0.zip \
&& mkdir /software \
&& mv /Drop-seq_tools-2.4.0 /software/dropseq \
&& chmod a+rx /software/dropseq/* \
&& curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \
&& bash /tmp/miniconda.sh -bfp /usr/local \
&& rm -rf /tmp/miniconda.sh \
&& conda install -y python=3.8.5 \
&& conda update conda \
&& apt-get update \
&& apt-get install libtbb2 \
&& apt-get -qq -y remove curl bzip2 \
&& apt-get -qq -y autoremove \
&& apt-get autoclean \
&& rm -rf /var/lib/apt/lists/* /var/log/dpkg.log \
&& conda clean --all --yes \
&& conda config --add channels conda-forge --add channels bioconda \
&& conda install -y \
samtools=1.3.1 \
bowtie2=2.4.4 \
pysam=0.16.0.1 \
pandas=1.2.1 \
python-igraph=0.8.3 \
biopython=1.77
COPY *.py /scripts/
COPY tcrgo /scripts/tcrgo