Skip to content
Snippets Groups Projects
Commit 124ee9c0 authored by LiNk-NY's avatar LiNk-NY
Browse files

replace BiocInstaller biocLite mentions with BiocManager

parent 79ff2181
No related branches found
No related tags found
No related merge requests found
Package: splatter
Type: Package
Title: Simple Simulation of Single-cell RNA Sequencing Data
Version: 1.5.3
Version: 1.5.4
Date: 2018-08-20
Author: Luke Zappia
Authors@R:
......
......@@ -30,14 +30,15 @@ If you have this installed Splatter can be installed from Bioconductor using
`biocLite`:
```{r}
source("https://bioconductor.org/biocLite.R")
biocLite("splatter")
if (!requireNamespace("BiocManager", quietly=TRUE))
install.packages("BiocManager")
BiocManager::install("splatter")
```
If you wish to build a local version of the vignette use:
```{r}
biocLite("splatter", build_vignettes=TRUE)
BiocManager::install("splatter", build_vignettes=TRUE)
```
This will also build the vignette and install all suggested dependencies (which
......
......@@ -34,14 +34,15 @@ If you have these installed Splatter can be installed from Bioconductor using
`biocLite`:
```{r}
source("https://bioconductor.org/biocLite.R")
biocLite("splatter")
if (!requireNamespace("BiocManager", quietly=TRUE))
install.packages("BiocManager")
BiocManager::install("splatter")
```
If you wish to build a local version of the vignette use:
```{r}
biocLite("splatter", build_vignettes=TRUE)
BiocManager::install("splatter", build_vignettes=TRUE)
```
This will also build the vignette and install all suggested dependencies (which
......@@ -55,11 +56,11 @@ If you want to try the [development version][devel] this can also be installed
from Bioconductor:
```{r}
library(BiocInstaller)
library(BiocManager)
useDevel()
biocValid() # checks for out of date packages
biocLite() # (optional) updates out of date packages
biocLite("splatter")
BiocManager::install() # (optional) updates out of date packages
BiocManager::install("splatter")
```
Depending on the current release cycle you may also need to install the
......
......@@ -29,14 +29,15 @@ introduction to Splatter's functionality.
Splatter can be installed from Bioconductor:
```{r install, eval = FALSE}
source("https://bioconductor.org/biocLite.R")
biocLite("splatter")
if (!requireNamespace("BiocManager", quietly=TRUE))
install.packages("BiocManager")
BiocManager::install("splatter")
```
To install the most recent development version from Github use:
```{r install-github, eval = FALSE}
biocLite("Oshlack/splatter", dependencies = TRUE,
BiocManager::install("Oshlack/splatter", dependencies = TRUE,
build_vignettes = TRUE)
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment