We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2863adb commit 312d19bCopy full SHA for 312d19b
README.md
@@ -41,10 +41,11 @@ All informations about DRomics can also be found at <a href="https://lbbe.univ-l
41
The `limma` and `DESeq2` packages from Bioconductor must be installed for the use of `DRomics` (can take a long time):
42
43
```r
44
-if (!requireNamespace("BiocManager", quietly = TRUE))
+if (!requireNamespace("BiocManager", quietly = TRUE)) {
45
install.packages("BiocManager")
46
-else
+} else {
47
BiocManager::install(ask = FALSE, update = TRUE)
48
+}
49
50
BiocManager::install(c("limma", "DESeq2"))
51
```
0 commit comments