Nothing
context("LRT")
test_that("test='LRT' gives correct errors", {
dds <- makeExampleDESeqDataSet(n=100, m=4)
dds$group <- factor(c(1,2,1,2))
design(dds) <- ~ condition
expect_error(DESeq(dds, test="LRT", reduced=~group))
expect_error(DESeq(dds, test="LRT", reduced=~1, modelMatrixType="expanded"))
expect_error(DESeq(dds,test="LRT",reduced=~group, betaPrior=TRUE))
dds <- estimateSizeFactors(dds)
dds <- estimateDispersions(dds)
expect_error(nbinomLRT(dds))
})
test_that("glmGamPoi works", {
dds <- makeExampleDESeqDataSet(n=100, m=8)
dds$group <- factor(rep(1:2,times=4))
design(dds) <- ~group + condition
dds <- DESeq(dds, test="LRT", reduced=~1, fitType="glmGamPoi")
})
test_that("test='LRT' with quasi-likelihood estimates gives correct errors", {
dds <- makeExampleDESeqDataSet(n=100, m=4)
dds$group <- factor(c(1,2,1,2))
design(dds) <- ~ condition + group
expect_warning(DESeq(dds, test = "Wald", fitType = "glmGamPoi"))
dds <- estimateSizeFactors(dds)
dds_gp <- estimateDispersions(dds)
expect_error(nbinomLRT(dds_gp, reduced = ~ condition, type = "glmGamPoi"))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.