forked from Genomon-Project/GenomonSV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
46 lines (38 loc) · 956 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
38
39
40
41
42
43
44
45
46
FROM ubuntu:16.04
MAINTAINER Yuichi Shiraishi <[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 \
python \
python-pip \
bwa
RUN wget https://github.com/samtools/htslib/releases/download/1.7/htslib-1.7.tar.bz2 && \
tar jxvf htslib-1.7.tar.bz2 && \
cd htslib-1.7 && \
./configure && \
make && \
make install
RUN pip install 'pip>=20,<21'
RUN pip install 'setuptools>=44,<45'
RUN pip install annot_utils==0.2.1
RUN pip install pysam==0.15
RUN pip install numpy==1.15.1
RUN pip install scipy==1.1.0
RUN pip install edlib
COPY . /root/GenomonSV
RUN cd /root/GenomonSV && python setup.py install
# for blat
RUN apt-get update && apt-get install -y \
libkrb5-3 \
libpng12-0
# sv_utils
RUN pip install sv_utils==0.5.1
RUN pip install primer3-py==0.5.5