You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-6Lines changed: 10 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ You must have Java, Python and R installed. Within R, you must have BioConductor
25
25
of these you need to install. If you already have all these, skip to the next section.
26
26
27
27
#### Java (1.8+ recommended, but will probably work on 1.6+)
28
-
netDx uses the GeneMANIA algorithm to integrate patient networks and recommend patients by similarity (Mostafavi and Morris (2008). *Genome Biol* 9:Suppl 1). GeneMANIA is currently implemented in Java, making this interpreter a requirement for netDx.
28
+
netDx uses the GeneMANIA algorithm to integrate patient networks and recommend patients by similarity (Mostafavi and Morris (2008). *Genome Biol* 9:Suppl 1). GeneMANIA is currently implemented in Java, making this interpreter a requirement for netDx.
29
29
30
30
At command line, run `java --version`. You should see output like this:
31
31
```
@@ -78,7 +78,9 @@ This section assumes you have Java, Python, R and Bioconductor installed. From c
> install.packages("knitr") # needed to run examples
@@ -89,17 +91,19 @@ Run the medulloblastoma vignette to make sure the netDx pipeline works from end
89
91
Each vignette is in Sweave format (`.Rnw`) . To run these, you need to have both `netDx` and `netDx.examples` installed. You will also need to install the R package `knitr` to compile the Sweave file. If you have [Rstudio](https://www.rstudio.com/home/) installed (highly recommended), you should be able to open the `Rnw` file and click `Compile PDF`. Alternately, you may run the vignette through an interactive R session:
90
92
91
93
```
92
-
$ cd netDx/examples/
94
+
$ cd netDx-master/examples/
93
95
$ R
94
96
> require(knitr)
95
97
> knit2pdf("Medulloblastoma.Rnw")
96
98
```
97
-
This should generate `Medulloblastoma.pdf` in the `examples/` directory.
99
+
This should generate `Medulloblastoma.pdf` in the `examples/` directory.
98
100
99
101
## Known issues with compiling pdfs
100
102
101
-
#### (Linux)
102
-
If you are getting an error saying that R cannot find `/usr/bin/texti2dvi`, install the `texinfo` package.
103
+
#### (Linux)
104
+
If you are getting an error saying that R cannot find `/usr/bin/texti2dvi`, install the `texinfo` and 'texlive' packages in linux. You can use the commands:
105
+
apt-get install texinfo
106
+
apt-get install texlive
103
107
104
108
#### (OS/X): "`pdfLaTex` not found" error
105
109
When compiling the pdf, you may get a message saying that `pdfLaTex` is not installed. We have had one such report on OS/X and it is known to occur after an upgrade to OS X Mavericks. The following steps resolved the issue (paraphrased from [this post](http://stackoverflow.com/questions/22081991/rmarkdown-pandoc-pdflatex-not-found)):
0 commit comments