-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
52 lines (45 loc) · 1.47 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
FROM rocker/r-ver:4.0.3
RUN apt-get update --fix-missing -qq && \
apt-get install -y -q \
vim \
git \
time \
python3 \
python3-pip \
libz-dev \
libcurl4-gnutls-dev \
libxml2-dev \
libssl-dev \
libpng-dev \
libjpeg-dev \
libbz2-dev \
liblzma-dev \
libncurses5-dev \
libncursesw5-dev \
libgl-dev \
libgsl-dev \
sysstat \
watch \
&& apt-get clean \
&& apt-get purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN cd /tmp && git clone --branch 1.11.0 https://github.com/samtools/htslib.git && cd htslib && make && make install
RUN cd /tmp && git clone --branch 1.11 https://github.com/samtools/samtools.git && cd samtools && make && make install
RUN cd /tmp && git clone --branch 1.11 https://github.com/samtools/bcftools.git && cd bcftools && make && make install
RUN pip3 install numpy cython pandas
RUN pip3 install pysam
RUN pip3 install HTSeq
RUN pip3 install sklearn statsmodels
RUN R -e 'install.packages(c("BiocManager", "devtools", "argparse", "dbplyr"))'
RUN R -e 'BiocManager::install("tximport")'
RUN R -e 'BiocManager::install("rhdf5")'
RUN R -e 'BiocManager::install("GenomicFeatures")'
RUN R -e 'BiocManager::install("EnrichmentBrowser")'
RUN R -e 'BiocManager::install("BANDITS")'
RUN R -e 'BiocManager::install("DRIMSeq")'
RUN R -e 'BiocManager::install("DEXSeq")'
RUN pip3 install scikit-learn
ADD data /home/data
ADD scripts /home/scripts
ADD software /home/software
RUN cd /home/software && git clone --branch v2.3 https://github.com/comprna/SUPPA.git