-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
55 lines (38 loc) · 1.73 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
53
54
55
################## BASE IMAGE ######################
FROM biocontainers/biocontainers:latest
################## METADATA ######################
LABEL base.image="biocontainers:latest"
LABEL software="TFBS Software"
LABEL software.version="0.1"
LABEL description="Software required to generate DNase footprints"
LABEL tags="Footprints"
################## MAINTAINER ######################
MAINTAINER Ravi K. Madduri <[email protected]>
################## UPDATE OF SYSTEM PACKAGES ######################
USER root
RUN apt-get update && apt-get install -y git build-essential zlib1g-dev libpng-dev libcurl4-openssl-dev
################## INSTALLATION OF HINT ######################
RUN conda install pybigwig==0.3.10 -c bioconda
RUN pip install ngslib==1.1.20
RUN pip install RGT==0.11.2
################## INSTALLATION OF BEDTOOLS ######################
RUN conda install bedtools=2.17.0
################## INSTALLATION OF SAMTOOLS ######################
RUN conda install samtools=1.1.0
################## INSTALLATION OF WELLINGTON ######################
RUN pip install pyDNase==0.2.5
################## INSTALLATION OF FSEQ ######################
RUN curl -o /tmp/fseq_1.84.tgz http://html-large-files-dept-fureylab.cloudapps.unc.edu/fureylabfiles/fseq/fseq_1.84.tgz
RUN cd /tmp
RUN tar -xzf /tmp/fseq_1.84.tgz -C /usr/bin/
ENV PATH="/usr/bin/fseq/bin:${PATH}"
################## INSTALLATION OF SNAP from Github version ######################
WORKDIR /tmp/
RUN git clone https://github.com/amplab/snap.git
WORKDIR /tmp/snap
RUN git checkout 48e7ae5d38145c094af1fe42a4b3abf1e72e1bb7
WORKDIR /tmp/snap/
RUN make
RUN mv /tmp/snap/snap-aligner /usr/bin/
RUN rm -rf /tmp/snap
##############################################################################