catalina.md
... ...
@@ -62,6 +62,14 @@ Note that the whitespace MUST be a tab character. Spaces will not work.
62 62
Here is a file for reference : [synthetic.conf](downloads/synthetic.conf).
63 63
Thanks to Ron Rock at University of Chicago for pointing this out.
64 64
65
+You can download this file to the proper location on your machine with these two commands:
66
+
67
+```
68
+cd /etc
69
+
70
+sudo curl https://biogrids.org/wiki/downloads/synthetic.conf -o synthetic.conf
71
+```
72
+
65 73
### 4. Reboot
66 74
67 75
You should then see this in your root partition (/) :
downloads/synthetic.conf
... ...
@@ -1 +1 @@
1
-programs /opt/biogrids
1
+programs /opt/sbgrid
faq.md
... ...
@@ -2,12 +2,15 @@
2 2
3 3
## How do I confirm the version of R I am using?
4 4
5
----
6 5
7 6
Within your R code:
8
-`> system("type R")
7
+
8
+```
9
+> system("type R")
9 10
R is /programs/x86_64-linux/r/3.6.2/bin/R
10 11
> library(ggplot2)
11 12
> packageVersion("ggplot2")
12 13
[1] '3.2.1'
13
->`
14
+
15
+```
16
+