File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,5 @@ manifest.mf
4
4
nbproject
5
5
dist /README.TXT
6
6
7
+
8
+ install-packages.R
Original file line number Diff line number Diff line change
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/')"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments