Browse code

Update README.md

Dimitris Polychronopoulos authored on 16/11/2019 15:45:49 • GitHub committed on 16/11/2019 15:45:49
Showing 1 changed files
... ...
@@ -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
+```
Browse code

replace BiocInstaller biocLite mentions with BiocManager

LiNk-NY authored on 30/08/2018 17:46:19
Showing 1 changed files
... ...
@@ -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
Browse code

Update Readme

Ge Tan authored on 31/08/2016 11:52:25
Showing 1 changed files
... ...
@@ -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")
Browse code

Update README.md

Ge Tan authored on 27/07/2016 20:27:21 • GitHub committed on 27/07/2016 20:27:21
Showing 1 changed files
... ...
@@ -15,3 +15,6 @@ biocLite("CNEr")
15 15
 ```R
16 16
 devtools::install_github("ge11232002/CNEr")
17 17
 ```
18
+
19
+## Vignette
20
+Latest vignette is available at http://rpubs.com/yang2/CNEr3
Browse code

Create README.md

Ge Tan authored on 15/12/2015 18:11:39
Showing 1 changed files
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
+```