Browse code

add bioc installation instructions

Nick authored on 08/11/2022 23:04:54
Showing 1 changed files

... ...
@@ -17,8 +17,26 @@ We also provide functions for normalisation and estimation of the number of clus
17 17
 Installation
18 18
 --------
19 19
 
20
+Install the Bioconductor release version.
21
+
22
+```r
23
+if (!require("BiocManager", quietly = TRUE))
24
+    install.packages("BiocManager")
25
+
26
+BiocManager::install("FuseSOM")
27
+```
28
+Otherwise, if you would like the most up-to-date features, install the development version.
29
+
20 30
 ```r
21
-# Install the development version from GitHub:
31
+if (!require("BiocManager", quietly = TRUE))
32
+    install.packages("BiocManager")
33
+
34
+# The following initializes usage of Bioc devel
35
+BiocManager::install(version='devel')
36
+
37
+BiocManager::install("FuseSOM")
38
+
39
+# Or install the development version from GitHub:
22 40
 # install.packages("devtools")
23 41
 devtools::install_github("https://github.com/ecool50/FuseSOM")
24 42
 library(FuseSOM)