Description Usage Arguments Value Author(s) See Also Examples
For each gene, the function calculates a chi-square p value by simply calculating:
1 - pchisq(resReduced$deviance - resFull$deviance, attr(resReduced,
"df.residual") - attr(resFull, "df.residual"))
1 | nbinomGLMTest(resFull, resReduced)
|
resFull, resReduced |
GLM fit data frames, as returned by |
a vector of p values
Simon Anders, anders@embl.de
1 2 3 4 5 6 | cds <- makeExampleCountDataSet()[ 1:100, ]
cds <- estimateSizeFactors( cds )
cds <- estimateDispersions( cds, method="pooled" )
fit1 <- fitNbinomGLMs( cds, count ~ condition )
fit0 <- fitNbinomGLMs( cds, count ~ 1 )
nbinomGLMTest( fit1, fit0 )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.