testForDEU | R Documentation |
This will perform a likelihood ratio test for differential
exon usage. Internally, it calls the DESeq2 function nbinomLRT
.
testForDEU(
object,
fullModel = design(object),
reducedModel = ~sample + exon,
BPPARAM = SerialParam(),
fitType = c("DESeq2", "glmGamPoi")
)
object |
A DEXSeqDataSet object. |
fullModel |
The full model formula. |
reducedModel |
Null model formula. |
BPPARAM |
A "BiocParallelParam" instance. See |
fitType |
Specifies what internal engine to use for fitting the GLMs. Options are "DESeq2" or "glmGamPoi". |
The information of the variables of the formulas
should be present in the colData
of the
DEXSeqDataSet
object.
A DEXSeqDataSet
with slots filled with information about the test.
data(pasillaDEXSeqDataSet, package="pasilla")
dxd <- estimateSizeFactors( dxd )
dxd <- estimateDispersions( dxd )
dxd <- testForDEU( dxd )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.