Skip to content

Commit 0d84e70

Browse files
committed
Tested version of metagenemark component
1 parent d91cfab commit 0d84e70

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docker/chiron-metagenemark/Dockerfile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@ FROM ubuntu:18.04
77
MAINTAINER Joshua Orvis <[email protected]>
88
LABEL Description="This image is used to run the metagenomic gene prediction tool MetaGeneMark, and includes biocode for format conversion" Version="1.0.0"
99

10-
RUN apt-get -y update && apt-get install -y wget python3 python3-pip
10+
RUN apt-get -y update && apt-get install -y wget python3 python3-pip libxml2-dev zlib1g-dev
1111

12-
RUN wget -O metagenemark.tar.gz https://www.dropbox.com/s/2ruuby8pgy631pk/MetaGeneMark_linux_64.tar.gz?dl=0
12+
# For reference databases needed by tools
13+
RUN mkdir /dbs
14+
15+
RUN wget -O metagenemark.tar.gz https://www.dropbox.com/s/pbj2cix0jc9kl9s/MetaGeneMark_linux_64.tar.gz?dl=0
1316
RUN tar -xzf metagenemark.tar.gz
1417
RUN mv MetaGeneMark_linux_64/mgm/gmhmmp /usr/bin/
15-
RUN mv MetaGeneMark_linux_64/mgm/MetaGeneMark_v1.mod .
18+
RUN mv MetaGeneMark_linux_64/mgm/MetaGeneMark_v1.mod /dbs/
19+
RUN cp MetaGeneMark_linux_64/gm_key_64 /root/.gm_key
1620

1721
RUN pip3 install biocode
1822

19-
# For reference databases needed by tools
20-
RUN mkdir /dbs
21-
2223
# For demonstration datasets
2324
RUN mkdir /tutorials

0 commit comments

Comments
 (0)