forked from Genomon-Project/fusionfusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
37 lines (31 loc) · 896 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:22.04
MAINTAINER Yuichi Shiraishi <friend1ws@gmail.com>
RUN apt-get update && apt-get install -y \
git \
wget \
bzip2 \
make \
gcc \
zlib1g-dev \
libbz2-dev \
liblzma-dev \
libcurl4-openssl-dev \
libssl-dev \
libkrb5-3 \
libpng16-16 \
python3 \
python3-dev \
python3-pip
RUN wget -q https://github.com/samtools/htslib/releases/download/1.15/htslib-1.15.tar.bz2 && \
tar jxvf htslib-1.15.tar.bz2 && \
cd htslib-1.15 && \
make && \
make install
RUN pip3 install pysam==0.19.1
RUN pip3 install annot-utils==0.3.1
COPY . /root/fusionfusion
RUN cd /root/fusionfusion && python3 setup.py build install
RUN pip3 install chimera_utils==0.6.0
RUN git clone --depth=1 -b fix/python3-compat https://github.com/chrovis-genomon/fusion_utils.git && \
cd fusion_utils && \
python3 setup.py build install