Skip to content

Commit 3860eaa

Browse files
authored
Update for Bioconductor version 3.9
Modified installation instructions to match version 3.9 of [Bioconductor](https://bioconductor.org/install/) - fixes #226
1 parent 24ca285 commit 3860eaa

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ Scripts reproducing all the results of the paper are available [here](https://gi
1111
The easiest way to install is using the `devtools` package through Bioconductor.
1212

1313
```{r}
14-
source("http://bioconductor.org/biocLite.R")
15-
biocLite("devtools") # only if devtools not yet installed
16-
biocLite("pachterlab/sleuth")
14+
if (!requireNamespace("BiocManager", quietly = TRUE))
15+
install.packages("BiocManager")
16+
BiocManager::install()
17+
BiocManager::install("devtools") # only if devtools not yet installed
18+
BiocManager::install("pachterlab/sleuth")
1719
```
1820

1921
These commands will install `sleuth` along with all of its dependencies. You

0 commit comments

Comments
 (0)