-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev updates Fri 4 Sep 2015 16:35:52 BST
- Loading branch information
Showing
1 changed file
with
5 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM compbio/ngseasy-base:1.0-r001 | |
# Maintainer | ||
MAINTAINER Stephen Newhouse [email protected] | ||
|
||
RUN apt-get install -y gnuplot libnuma-dev libz-dev markdown | ||
RUN apt-get install -y gnuplot libnuma-dev libz-dev markdown zlib1g-dev doxygen | ||
|
||
RUN cd /usr/local/pipeline && \ | ||
git clone --recursive https://github.com/sequencing/isaac_aligner.git && \ | ||
|
@@ -12,6 +12,10 @@ RUN cd /usr/local/pipeline && \ | |
make && \ | ||
make install | ||
|
||
RUN cd /usr/local/pipeline && \ | ||
wget https://github.com/sequencing/isaac_variant_caller/archive/v1.0.7.tar.gz && \ | ||
tar -xvf v1.0.7.tar.gz && \ | ||
|
||
#Cleanup the temp dir | ||
RUN rm -rf /tmp/* | ||
|
||
|