-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile
45 lines (32 loc) · 1.01 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
# miRge - a rational and efficient approach to miRNA-seq
# base image from ubuntu
FROM ubuntu
WORKDIR /opt
RUN apt-get update && apt-get install -y \
aufs-tools \
automake \
build-essential \
curl \
libgd-graph-perl \
libhtml-table-perl \
python-setuptools \
python-dev \
unzip \
wget \
git \
python-pip \
&& rm -rf /var/lib/apt/lists/*
# Dependecies needed:
# 1. Cutadapt
RUN pip install cutadapt
# 2. Bowtie
RUN wget http://sourceforge.net/projects/bowtie-bio/files/bowtie/1.1.1/bowtie-1.1.1-linux-x86_64.zip/download -O bowtie-1.1.1-linux-x86_64.zip
RUN unzip bowtie-1.1.1-linux-x86_64.zip
ENV PATH /opt/bowtie-1.1.1:$PATH
# 3. Clone miRge and get the Libraries used by the software
RUN git clone https://github.com/BarasLab/miRge.git
RUN wget --quiet http://atlas.pathology.jhu.edu/baras/miRge/miRge.seqLibs.tar.gz && \
tar -zxvf miRge.seqLibs.tar.gz && \
mv usr/local/miRge/* /opt/miRge/ && \
rm miRge.seqLibs.tar.gz
ENTRYPOINT ["perl", "/opt/miRge/miRge.pl"]