Skip to content

Commit 45fde53

Browse files
committed
Add dockerfile
rename R script
1 parent 471a4d3 commit 45fde53

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
FROM bioconductor/release_base
3+
MAINTAINER Mark Dunning<[email protected]>
4+
5+
6+
RUN apt-get update && apt-get install -y git
7+
###Get repository of the course. Install data and R packages
8+
RUN git clone https://github.com/bioinformatics-core-shared-training/ngs-in-bioc.git /home/rstudio/cruk-bioinf-training
9+
WORKDIR /home/rstudio/cruk-bioinf-training
10+
RUN wget https://www.dropbox.com/s/ve6o68hkbthe3lo/exampleData.zip
11+
RUN unzip exampleData.zip
12+
RUN R -f installBioCPkgs.R
13+
RUN rm -r images javascripts stylesheets params.json index.html

index.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,28 @@ <h3>
4747
</p>
4848

4949
<h3>
50-
<a id="software" class="anchor" href="#software" aria-hidden="true"><span class="octicon octicon-link"></span></a>Software Requirements.</h3>
50+
<a id="software" class="anchor" href="#software" aria-hidden="true"><span class="octicon octicon-link"></span></a>How to Run the course.</h3>
5151
<p>
52+
Download the materials from this repository and <a href="GeneticPracticalPackageInstall.R">install</a> the required R and Bioconductor packages
53+
</p>
54+
55+
<h3>
56+
<a id="docker" class="anchor" href="#docker" aria-hidden="true"><span class="octicon octicon-link"></span></a>Using Docker.</h3>
57+
<p>
58+
59+
<pre class="input"><code>docker run -p 8787:8787 markdunning/ngs-in-bioc</code></pre>
60+
61+
</p>
62+
63+
64+
5265
</p>
5366

5467
<h3>
5568
<a id="data" class="anchor" href="#data" aria-hidden="true"><span class="octicon octicon-link"></span></a>Example Data.</h3>
5669
<p>
70+
An exampleData folder is required to run the practicals sucessfully. This folder can be downloaded from <a href="https://app.box.com/s/ntjkjn3vb4jkvy6kq664">https://app.box.com/s/ntjkjn3vb4jkvy6kq664.</a> Once downloaded and unzipped, the folder should be placed inside the Practicals directory
71+
5772
</p>
5873

5974

0 commit comments

Comments
 (0)