-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDockerfile
39 lines (32 loc) · 881 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
37
FROM ubuntu:20.04
MAINTAINER Yuichi Shiraishi <[email protected]>
MAINTAINER Kenichi Chiba <[email protected]>
RUN apt-get update && apt-get install -y \
git \
wget \
bzip2 \
make \
gcc \
zlib1g-dev \
libbz2-dev \
liblzma-dev \
libcurl4-openssl-dev \
libssl-dev \
python3-pip
RUN wget https://github.com/samtools/htslib/releases/download/1.11/htslib-1.11.tar.bz2 && \
tar jxvf htslib-1.11.tar.bz2 && \
cd htslib-1.11 && \
./configure && \
make && \
make install
RUN pip3 install --upgrade pip
RUN pip3 install --upgrade setuptools
RUN pip3 install annot_utils==0.3.1
RUN pip3 install pysam==0.16.0.1
RUN pip3 install numpy==1.19.5
RUN pip3 install scipy==1.5.4
RUN pip3 install genomon_sv==0.8.2
RUN pip3 install edlib==1.3.8.post2
# sv_utils
RUN pip3 install sv_utils==0.6.1
RUN pip3 install primer3-py==0.6.1