...
|
...
|
@@ -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
|
|