Skip to content
Snippets Groups Projects
Commit 497eba4d authored by Luke Zappia's avatar Luke Zappia
Browse files

Merge branch 'master' of git.bioconductor.org:packages/splatter

* 'master' of git.bioconductor.org:packages/splatter:
  replace BiocInstaller biocLite mentions with BiocManager
parents ee0eb074 bab7e299
No related branches found
No related tags found
No related merge requests found
Package: splatter Package: splatter
Type: Package Type: Package
Title: Simple Simulation of Single-cell RNA Sequencing Data Title: Simple Simulation of Single-cell RNA Sequencing Data
Version: 1.5.3 Version: 1.5.4
Date: 2018-08-20 Date: 2018-08-20
Author: Luke Zappia Author: Luke Zappia
Authors@R: Authors@R:
......
...@@ -30,14 +30,15 @@ If you have this installed Splatter can be installed from Bioconductor using ...@@ -30,14 +30,15 @@ If you have this installed Splatter can be installed from Bioconductor using
`biocLite`: `biocLite`:
```{r} ```{r}
source("https://bioconductor.org/biocLite.R") if (!requireNamespace("BiocManager", quietly=TRUE))
biocLite("splatter") install.packages("BiocManager")
BiocManager::install("splatter")
``` ```
If you wish to build a local version of the vignette use: If you wish to build a local version of the vignette use:
```{r} ```{r}
biocLite("splatter", build_vignettes=TRUE) BiocManager::install("splatter", build_vignettes=TRUE)
``` ```
This will also build the vignette and install all suggested dependencies (which 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 ...@@ -34,14 +34,15 @@ If you have these installed Splatter can be installed from Bioconductor using
`biocLite`: `biocLite`:
```{r} ```{r}
source("https://bioconductor.org/biocLite.R") if (!requireNamespace("BiocManager", quietly=TRUE))
biocLite("splatter") install.packages("BiocManager")
BiocManager::install("splatter")
``` ```
If you wish to build a local version of the vignette use: If you wish to build a local version of the vignette use:
```{r} ```{r}
biocLite("splatter", build_vignettes=TRUE) BiocManager::install("splatter", build_vignettes=TRUE)
``` ```
This will also build the vignette and install all suggested dependencies (which 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 ...@@ -55,11 +56,11 @@ If you want to try the [development version][devel] this can also be installed
from Bioconductor: from Bioconductor:
```{r} ```{r}
library(BiocInstaller) library(BiocManager)
useDevel() useDevel()
biocValid() # checks for out of date packages biocValid() # checks for out of date packages
biocLite() # (optional) updates out of date packages BiocManager::install() # (optional) updates out of date packages
biocLite("splatter") BiocManager::install("splatter")
``` ```
Depending on the current release cycle you may also need to install the Depending on the current release cycle you may also need to install the
......
...@@ -29,14 +29,15 @@ introduction to Splatter's functionality. ...@@ -29,14 +29,15 @@ introduction to Splatter's functionality.
Splatter can be installed from Bioconductor: Splatter can be installed from Bioconductor:
```{r install, eval = FALSE} ```{r install, eval = FALSE}
source("https://bioconductor.org/biocLite.R") if (!requireNamespace("BiocManager", quietly=TRUE))
biocLite("splatter") install.packages("BiocManager")
BiocManager::install("splatter")
``` ```
To install the most recent development version from Github use: To install the most recent development version from Github use:
```{r install-github, eval = FALSE} ```{r install-github, eval = FALSE}
biocLite("Oshlack/splatter", dependencies = TRUE, BiocManager::install("Oshlack/splatter", dependencies = TRUE,
build_vignettes = 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