forked from aweimann/traitar
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from aweimann/master
v1.02
- Loading branch information
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
############################################################ | ||
# Dockerfile to run traitar - the microbial trait analyzer | ||
# Dockerfile to run Traitar - the microbial trait analyzer | ||
# Based on Ubuntu Image | ||
############################################################ | ||
|
||
# Set the base image to use to Ubuntu | ||
FROM ubuntu:14.04 | ||
FROM ubuntu:trusty | ||
|
||
RUN apt-get update | ||
MAINTAINER Aaron Weimann (weimann@hhu.de) | ||
RUN apt-get install -y python-scipy python-matplotlib python-pip python-pandas | ||
RUN echo "deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse ">> /etc/apt/sources.list | ||
RUN sudo apt-get update | ||
RUN apt-get update | ||
RUN apt-get install -y hmmer prodigal | ||
RUN apt-get install -y wget | ||
COPY dist/traitar-1.0.0.tar.gz /tmp | ||
COPY dist/traitar-1.0.1.tar.gz /tmp | ||
COPY traitar/data/sample_data /tmp/sample_data | ||
RUN pip install /tmp/traitar-1.0.0.tar.gz | ||
RUN pip install /tmp/traitar-1.0.1.tar.gz | ||
COPY Pfam-A.hmm /tmp | ||
RUN traitar pfam --local /tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.0.1" | ||
__version__ = "1.0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters