forked from jambler24/GenGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerFile
47 lines (35 loc) · 1.21 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
FROM ubuntu:latest
RUN apt-get update --fix-missing -qq && apt-get install -y -q \
mafft \
python3 \
python3-pip \
python-pip \
curl \
wget \
git-core \
bzip2 \
pypy \
libncurses5-dev \
libncursesw5-dev \
build-essential \
pkg-config \
zlib1g-dev \
default-jre \
&& apt-get clean \
&& apt-get purge
# Install networkx
RUN python3 -m pip install networkx GenGraph numpy
# Install NetworkX on pypy
#RUN pypy -m pip install networkx==1.9.1
# Install a MSA tool
# Muscle
RUN curl -fksSL http://drive5.com/muscle/downloads3.8.31/muscle3.8.31_i86linux64.tar.gz | tar xz && \
mv muscle3.8.31_i86linux64 /usr/local/bin/muscle3.8.31_i86darwin64
RUN git clone https://github.com/jambler24/GenGraph
# Install MAUVE
RUN curl -fksSL http://darlinglab.org/mauve/snapshots/2015/2015-02-13/linux-x64/mauve_linux_snapshot_2015-02-13.tar.gz | tar xz && \
cp mauve_snapshot_2015-02-13/linux-x64/progressiveMauve /usr/local/bin/
#CMD echo "This is where we run GG toolkit"
ENTRYPOINT ["python3", "./GenGraph/gengraphTool.py"]
CMD ["-h"]
# docker run gengraphtoolkit make_genome_graph --out_file_name "test_docker" --seq_file multiGenome6.txt --mount source=./,target=/