Skip to content

Commit 3185bb4

Browse files
Added Dockerfile
1 parent c847315 commit 3185bb4

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ manifest.mf
44
nbproject
55
dist/README.TXT
66

7+
8+
install-packages.R

Dockerfile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# NanoOK Dockerfile
2+
FROM ubuntu:14.04
3+
MAINTAINER Richard Leggett <[email protected]>
4+
5+
RUN echo "deb http://cran.cnr.berkeley.edu/bin/linux/ubuntu trusty/" >> /etc/apt/sources.list
6+
RUN apt-get update
7+
RUN apt-get install -y --force-yes r-base
8+
RUN apt-get install -y --force-yes r-cran-ggplot2
9+
RUN apt-get install -y hdf5-tools
10+
RUN apt-get install -y texlive
11+
RUN apt-get install -y texlive-latex-extra
12+
RUN apt-get install -y default-jre
13+
RUN apt-get install -y git
14+
ADD http://last.cbrc.jp/last-761.zip /usr/
15+
RUN cd /usr ; unzip last-761 ; cd last-761 ; make ; make install
16+
RUN cd /usr ; git clone https://github.com/lh3/bwa.git
17+
RUN cd /usr/bwa ; make ; cp bwa /usr/local/bin
18+
RUN cd /usr ; git clone https://github.com/TGAC/NanoOK
19+
ENV NANOOK_DIR="/usr/NanoOK"
20+
RUN echo "export PATH=/usr/NanoOK/bin:${PATH}" >> ~/.bashrc
21+
RUN Rscript -e "install.packages('ggplot2', repos='https://cran.ma.imperial.ac.uk/')"
22+
RUN Rscript -e "install.packages('scales', repos='https://cran.ma.imperial.ac.uk/')"
23+
RUN Rscript -e "install.packages('gridExtra', repos='https://cran.ma.imperial.ac.uk/')"
24+
RUN Rscript -e "install.packages('reshape', repos='https://cran.ma.imperial.ac.uk/')"

install-packages.R

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)