... | ... |
@@ -12,33 +12,21 @@ Coordinated Gene Activity in Pattern Sets (CoGAPS) implements a Bayesian MCMC ma |
12 | 12 |
as follows: |
13 | 13 |
|
14 | 14 |
``` |
15 |
-source("https://bioconductor.org/biocLite.R") |
|
16 |
-biocLite("CoGAPS") |
|
15 |
+install.packages("BiocManager") |
|
16 |
+BiocManager::install("CoGAPS") |
|
17 | 17 |
``` |
18 | 18 |
|
19 | 19 |
The most up-to-date version of *CoGAPS* can be installed directly from the |
20 | 20 |
*FertigLab* Github Repository: |
21 | 21 |
|
22 | 22 |
``` |
23 |
-## Method 1 using biocLite |
|
24 |
-biocLite("FertigLab/CoGAPS", dependencies = TRUE, build_vignettes = TRUE) |
|
23 |
+## Method 1 using BiocManager |
|
24 |
+BiocManager::install("FertigLab/CoGAPS") |
|
25 | 25 |
|
26 | 26 |
## Method 2 using devtools package |
27 | 27 |
devtools::install_github("FertigLab/CoGAPS") |
28 | 28 |
``` |
29 | 29 |
|
30 |
-There is also an option to install the development version of *CoGAPS*, |
|
31 |
-while this version has the latest experimental features, it is not guaranteed |
|
32 |
-to be stable. |
|
33 |
- |
|
34 |
-``` |
|
35 |
-## Method 1 using biocLite |
|
36 |
-biocLite("FertigLab/CoGAPS", ref="develop", dependencies = TRUE, build_vignettes = TRUE) |
|
37 |
- |
|
38 |
-## Method 2 using devtools package |
|
39 |
-devtools::install_github("FertigLab/CoGAPS", ref="develop") |
|
40 |
-``` |
|
41 |
- |
|
42 | 30 |
# Using CoGAPS |
43 | 31 |
|
44 | 32 |
Follow the vignette here: http://htmlpreview.github.io/?https://github.com/FertigLab/CoGAPS/blob/develop/vignettes/CoGAPS.html |