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 24ca285 commit 3860eaaCopy full SHA for 3860eaa
README.md
@@ -11,9 +11,11 @@ Scripts reproducing all the results of the paper are available [here](https://gi
11
The easiest way to install is using the `devtools` package through Bioconductor.
12
13
```{r}
14
-source("http://bioconductor.org/biocLite.R")
15
-biocLite("devtools") # only if devtools not yet installed
16
-biocLite("pachterlab/sleuth")
+if (!requireNamespace("BiocManager", quietly = TRUE))
+ install.packages("BiocManager")
+BiocManager::install()
17
+BiocManager::install("devtools") # only if devtools not yet installed
18
+BiocManager::install("pachterlab/sleuth")
19
```
20
21
These commands will install `sleuth` along with all of its dependencies. You
0 commit comments