Browse code

replace BiocInstaller biocLite mentions with BiocManager

LiNk-NY authored on 30/08/2018 17:46:47
Showing 3 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: COMPASS
2 2
 Type: Package
3 3
 Title: Combinatorial Polyfunctionality Analysis of Single Cells
4
-Version: 1.19.0
4
+Version: 1.19.1
5 5
 Date: 2014-07-11
6 6
 Author: Lynn Lin, Kevin Ushey, Greg Finak, Ravio Kolde (pheatmap)
7 7
 Authors@R: c( person("Lynn", "Lin", role="aut", email="[email protected]"),
... ...
@@ -14,14 +14,14 @@ Getting Started
14 14
 
15 15
 Install the release version of `COMPASS` with:
16 16
 
17
-    library(BiocInstaller)
18
-    biocLite("COMPASS")
17
+    library(BiocManager)
18
+    BiocManager::install("COMPASS")
19 19
 
20 20
 or the development version with:
21 21
 
22
-    library(BiocInstaller)
22
+    library(BiocManager)
23 23
     useDevel()
24
-    biocLite("COMPASS")
24
+    BiocManager::install("COMPASS")
25 25
 
26 26
 To get an idea of how to use `COMPASS`, read 
27 27
 [the vignette](http://www.bioconductor.org/packages/devel/bioc/vignettes/COMPASS/inst/doc/COMPASS.html).
... ...
@@ -31,8 +31,8 @@ We'll assume that the data are provided as an `excel` document. We'll use some o
31 31
 We need a good package to load the excel file, we'll use the tidyverse pacakge `readxl`. If it's not installed, you can install it with the command
32 32
 
33 33
 ```{r install_readxl, eval=FALSE}
34
-library(BiocInstaller)
35
-biocLite("readxl")
34
+library(BiocManager)
35
+BiocManager::install("readxl")
36 36
 ```
37 37
 
38 38
 ```{r load_readxl}