-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (27 loc) · 1.28 KB
/
Dockerfile
File metadata and controls
32 lines (27 loc) · 1.28 KB
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
FROM ubuntu:latest
MAINTAINER Felix Francis <felixfrancier@gmail.com>
# Install all the softwares & dependencies required to run the pipeline
RUN apt-get update
RUN apt-get install -y wget
RUN apt-get install -y vim
RUN apt-get install -y nano
RUN apt-get install -y git
RUN apt-get install -y python-pip # v 2.7.11+
#RUN apt-get install python-dev build-essential
RUN pip install --upgrade pip shutilwhich numpy pandas biopython
RUN pip install Cython # v 0.24
RUN pip install primer3-py # v 0.5.1
RUN pip install networkx # v 1.11
# Download and extract multiplx software
RUN wget --content-disposition http://bioinfo.ut.ee/download/dl.php?file=24
RUN tar xzf multiplx_linux_64_20101011.tar.gz
RUN rm -rf multiplx_linux_64_20101011.tar.gz
# Install BLASTn
RUN apt-get install -y ncbi-blast+
RUN PATH=$PATH:~/opt/bin
# Download TA codes and sample genome, polymorphism vcf files
RUN git clone https://github.com/drmaize/ThermoAlign.git
RUN mv ThermoAlign/sample_genome/ ./
RUN mv ThermoAlign/sample_vcf/ ./
RUN mv ThermoAlign/TA_codes/ ./
RUN rm -rf ThermoAlign/