... | ... |
@@ -22,3 +22,11 @@ devtools::install_github("ge11232002/CNEr") |
22 | 22 |
|
23 | 23 |
## Vignette |
24 | 24 |
Latest vignette is available at http://rpubs.com/yang2/CNEr3 |
25 |
+ |
|
26 |
+<b>Citation</b>: |
|
27 |
+ |
|
28 |
+``` |
|
29 |
+G. Tan, D. Polychronopoulos, B.Lenhard: |
|
30 |
+CNEr: A toolkit for exploring extreme noncoding conservation. |
|
31 |
+PLoS Comput Biol. 2019 Aug 26;15(8):e1006940. doi: 10.1371/journal.pcbi.1006940. eCollection 2019 Aug. |
|
32 |
+``` |
... | ... |
@@ -4,8 +4,9 @@ Conserved Noncoding Elements (CNEs) Identification and Visualisation |
4 | 4 |
## Installation of the stable version of `CNEr` from Bioconductor |
5 | 5 |
|
6 | 6 |
```R |
7 |
-source("https://bioconductor.org/biocLite.R") |
|
8 |
-biocLite("CNEr") |
|
7 |
+if (!requireNamespace("BiocManager", quietly=TRUE)) |
|
8 |
+ install.packages("BiocManager") |
|
9 |
+BiocManager::install("CNEr") |
|
9 | 10 |
``` |
10 | 11 |
|
11 | 12 |
## Installation of the development version of `CNEr` from github |
... | ... |
@@ -9,8 +9,11 @@ biocLite("CNEr") |
9 | 9 |
``` |
10 | 10 |
|
11 | 11 |
## Installation of the development version of `CNEr` from github |
12 |
+**Prerequsite**: |
|
12 | 13 |
|
13 |
-* **Mac and Linux**: |
|
14 |
+ * Mac: Install "Command Line Tools" via `gcc` on terminal |
|
15 |
+ * Linux: Install a compiler and various development libraries (details vary across different flavors of Linux). |
|
16 |
+ * Windows: Install [Rtools](https://cran.r-project.org/bin/windows/Rtools/). |
|
14 | 17 |
|
15 | 18 |
```R |
16 | 19 |
devtools::install_github("ge11232002/CNEr") |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,17 @@ |
1 |
+# CNEr |
|
2 |
+Conserved Noncoding Elements (CNEs) Identification and Visualisation |
|
3 |
+ |
|
4 |
+## Installation of the stable version of `CNEr` from Bioconductor |
|
5 |
+ |
|
6 |
+```R |
|
7 |
+source("https://bioconductor.org/biocLite.R") |
|
8 |
+biocLite("CNEr") |
|
9 |
+``` |
|
10 |
+ |
|
11 |
+## Installation of the development version of `CNEr` from github |
|
12 |
+ |
|
13 |
+* **Mac and Linux**: |
|
14 |
+ |
|
15 |
+```R |
|
16 |
+devtools::install_github("ge11232002/CNEr") |
|
17 |
+``` |