Browse code

replace BiocInstaller with BiocManager

LiNk-NY authored on 17/07/2018 21:44:18
Showing 2 changed files

... ...
@@ -1,6 +1,6 @@
1 1
 Package: Biobase
2 2
 Title: Biobase: Base functions for Bioconductor
3
-Version: 2.41.1
3
+Version: 2.41.2
4 4
 Author: R. Gentleman, V. Carey, M. Morgan, S. Falcon
5 5
 Description: Functions that are needed by many other packages or which
6 6
         replace R functions.
... ...
@@ -95,8 +95,9 @@ this document. In the future, you might find that you need to install
95 95
 one or more additional packages. The best way to do this is to start
96 96
 an \R{} session and evaluate commands like
97 97
 <<install-pkg, eval=false>>=
98
-source("http://bioconductor.org/biocLite.R")
99
-biocLite(c("Biobase"))
98
+if (!require("BiocManager"))
99
+    install.packages("BiocManager")
100
+BiocManager::install("Biobase")
100 101
 @ 
101 102
 %% 
102 103