Skip to content

Commit

Permalink
Merge branch 'RELEASE_3_10'
Browse files Browse the repository at this point in the history
* RELEASE_3_10:
  Update secondary author emails
  Fix tests to work with checkmate 2.0.0
  Update Roxygen version and reoxygenise
  • Loading branch information
lazappi committed Feb 14, 2020
2 parents dc67355 + 39a9ae7 commit ca70ea1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
10 changes: 5 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Package: splatter
Type: Package
Title: Simple Simulation of Single-cell RNA Sequencing Data
Version: 1.11.1
Date: 2020-01-30
Version: 1.11.2
Date: 2020-02-14
Authors@R:
c(person("Luke", "Zappia", role = c("aut", "cre"),
email = "luke@lazappi.id.au",
comment = c(ORCID = "0000-0001-7744-8565")),
person("Belinda", "Phipson", role = c("aut"),
email = "belinda.phipson@mcri.edu.au",
email = "belinda.phipson@petermac.org",
comment = c(ORCID = "0000-0002-1711-7454")),
person("Alicia", "Oshlack", role = c("aut"),
email = "alicia.oshlack@mcri.edu.au",
email = "alicia.oshlack@petermac.org",
comment = c(ORCID = "0000-0001-9788-5690")))
Description: Splatter is a package for the simulation of single-cell RNA
sequencing count data. It provides a simple interface for creating complex
Expand All @@ -27,7 +27,7 @@ Imports:
akima,
BiocGenerics,
BiocParallel,
checkmate,
checkmate (>= 2.0.0),
edgeR,
fitdistrplus,
ggplot2,
Expand Down
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# DEVELOPMENT VERSION

## Version 1.11.2 (2020-02-14)

* Update tests to work with checkmate 2.0.0
* Add suggested checks to Kersplat tests and examples

## Version 1.10.1 (2020-02-14)

* Update tests to work with checkmate 2.0.0

## Version 1.11.1 (2010-01-30)

* Replace defunct scater function in vignettes
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test-BASiCSParams.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test_that("gene.params checks work", {
"gene.params: Incorrect column names")
expect_error(setParam(params, "gene.params",
data.frame(Mean = 1, Disp = "a")),
"gene.params: May only contain the following types: numeric")
"gene.params: May only contain the following types: \\{numeric\\}")
})

test_that("cell.params checks work", {
Expand All @@ -24,7 +24,7 @@ test_that("cell.params checks work", {
"cell.params: Incorrect column names")
expect_error(setParam(params, "cell.params",
data.frame(Phi = 1, S = "a")),
"cell.params: May only contain the following types: numeric")
"cell.params: May only contain the following types: \\{numeric\\}")
})

test_that("nBatches checks work", {
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-Lun2Params.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ test_that("gene.params checks work", {
"gene.params: Incorrect column names")
expect_error(setParam(params, "gene.params",
data.frame(Mean = 1, Disp = "a")),
"gene.params: May only contain the following types: numeric")
"gene.params: May only contain the following types: \\{numeric\\}")
})

0 comments on commit ca70ea1

Please sign in to comment.