tests/testthat/test_helper.R

context("Testing helper functions")

test_that("check ODS object", {
    ods <- makeExampleOutriderDataSet(10,10)
    expect_error(checkOutriderDataSet("a"), "Please provide an OutriderData")
    expect_true(checkOutriderDataSet(ods))
    
    expect_error(checkFullAnalysis(ods), "Please calculate the size factors")
    ods <- estimateSizeFactors(ods)
    
    expect_error(checkFullAnalysis(ods), "Please calculate the P-values before")
    padj(ods) <- matrix(runif(ncol(ods)*nrow(ods)), 
            ncol=ncol(ods), dimnames=dimnames(ods))
    
    expect_error(checkFullAnalysis(ods), "Please calculate the Z-scores before")
    zScore(ods) <- matrix(runif(ncol(ods)*nrow(ods)), 
            ncol=ncol(ods), dimnames=dimnames(ods))
    
    expect_true(checkFullAnalysis(ods))
})

test_that("check theta range", {
    expect_error(checkThetaRange("aaa"), "Please provide a range for theta")
    expect_error(checkThetaRange(c(NA,1)), "Please provide finite values")
    expect_error(checkThetaRange(c(2,1)), "The first element of the range")
    expect_true(checkThetaRange(c(1,2)))
})

test_that("check requirements", {
    ods <- makeExampleOutriderDataSet(10, 150)
    expect_error(checkCountRequirements(ods[,FALSE]), "Please pro.*one sample.")
    expect_error(checkCountRequirements(ods[FALSE,]), "Please pro.*one gene.")
    
    counts(ods)[1,] <- 0
    expect_error(checkCountRequirements(ods), "There are genes without any re")
    counts(ods)[1,1] <- 1
    expect_error(checkCountRequirements(ods), "The model requires for each")
    counts(ods)[1,2] <- 1
    expect_true(!any(checkCountRequirements(ods)))
})

test_that("check sample exclusion", {
    ods <- SummarizedExperiment(assays=SimpleList(
            a=matrix(1, nrow=16, ncol=11)))
    expect_false(all(sampleExclusionMask(ods)))
    expect_equal(length(sampleExclusionMask(ods)), 11)
    expect_is(sampleExclusionMask(ods, aeMatrix=TRUE), "matrix")
    expect_equal(dim(sampleExclusionMask(ods, aeMatrix=TRUE)), c(16, 11))
    
    vec <- c(logical(5), TRUE, TRUE, logical(4))
    mat <- do.call(rbind, rep(list((!vec) + 0), 16))
    
    sampleExclusionMask(ods) <- vec
    expect_equal(sampleExclusionMask(ods), vec)
    expect_equal(sampleExclusionMask(ods, aeMatrix=TRUE), mat)
})

Try the OUTRIDER package in your browser

Any scripts or data that you put into this service are public.

OUTRIDER documentation built on Nov. 8, 2020, 5:16 p.m.