1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# Tests the convertTo function.
# require(scran); require(testthat); source("test-convert.R")
set.seed(40000)
ncells <- 200
ngenes <- 1000
count.sizes <- rnbinom(ncells, mu=100, size=5)
dummy <- matrix(count.sizes, ncol=ncells, nrow=ngenes, byrow=TRUE)
rownames(dummy) <- paste0("X", seq_len(ngenes))
colnames(dummy) <- paste0("Y", seq_len(ncells))
X <- SingleCellExperiment(list(counts=dummy))
sizeFactors(X) <- 2^rnorm(ncells)
rowData(X)$SYMBOL <- paste0("X", seq_len(ngenes))
X$other <- sample(LETTERS, ncells, replace=TRUE)
# Converting to a DGEList.
test_that("Can convert from SingleCellExperiment to DGEList", {
y <- convertTo(X, type="edgeR")
expect_identical(y$counts, counts(X))
# Checking subsetting behaves as expected.
chosen <- c(50:1, 101:200)
y <- convertTo(X, type="edgeR", subset.row=chosen)
expect_identical(y$counts, counts(X)[chosen,])
# Checking metadata behaves as expected.
y <- convertTo(X, type="edgeR")
expect_identical(y$samples$other, X$other)
expect_identical(y$genes$SYMBOL, rowData(X)$SYMBOL)
# Trying out silly settings.
expect_warning(y <- convertTo(X[0,], type="edgeR"))
expect_identical(y$counts, counts(X)[0,])
expect_identical(y$genes$SYMBOL, character(0))
y <- convertTo(X[,0], type="edgeR")
expect_identical(y$counts, counts(X)[,0])
expect_identical(y$samples$other, character(0))
})
test_that("Can convert SingleCellExperiment to a DESeqDataSet", {
library(DESeq2)
y <- convertTo(X, type="DESeq2")
expect_equal(counts(y), counts(X))
expect_identical(unname(sizeFactors(y)), sizeFactors(X))
# Checking subsetting behaves as expected.
chosen <- c(50:1, 101:200)
y <- convertTo(X, type="DESeq2", subset.row=chosen)
expect_equivalent(assay(y), counts(X)[chosen,])
# Checking metadata is extracted as expected.
y <- convertTo(X, type="DESeq2")
expect_identical(y$other, X$other)
expect_identical(mcols(y)$SYMBOL, rowData(X)$SYMBOL)
})
# Converting to a CellDataSet.
catch_warning <- function(...) {
expect_warning(..., "gene_short_name")
}
get_exprs <- function(y) {
assayDataElement(y, "exprs")
}
test_that("Can convert SingleCellExperiment to a CellDataSet", {
skip("monocle is a little broken because of clusterApply")
catch_warning(y <- convertTo(X, type="monocle"))
expect_equal(get_exprs(y), counts(X))
expect_equivalent(sizeFactors(y), sizeFactors(X))
# Checking that subsetting works as expected.
chosen <- c(50:1, 101:200)
catch_warning(y <- convertTo(X, type="monocle", subset.row=chosen))
expect_equal(get_exprs(y), counts(X)[chosen,])
expect_equivalent(sizeFactors(y), sizeFactors(X))
# Checking metadata is extracted as expected.
catch_warning(y <- convertTo(X, type="monocle"))
expect_identical(y$other, X$other)
expect_identical(fData(y)$SYMBOL, rowData(X)$SYMBOL)
# # Looks like the CellDataSet constructor just fails with no rows.
# y <- convertTo(X[0,], type="monocle", row.fields="SYMBOL")
# expect_identical(get_exprs(y), counts(X)[0,])
# expect_identical(fData(y)$SYMBOL, character(0))
catch_warning(y <- convertTo(X[,0], type="monocle") )
expect_identical(get_exprs(y), counts(X)[,0])
expect_identical(y$other, character(0))
X2 <- X
sizeFactors(X2) <- NULL
expect_warning(y2 <- convertTo(X2, type="monocle"))
expect_equal(counts(X2), get_exprs(y2))
expect_true(all(is.na(sizeFactors(y2))))
})
|