Description Usage Arguments Details Value Note Author(s) References See Also Examples
Conducts deviance goodness of fit tests for each fit in a DGEGLM
object
1 2 |
glmfit |
a |
pcutoff |
scalar giving the cut-off value for the Holm-adjusted p-value. Genes with Holm-adjusted p-values lower than this cutoff value are flagged as ‘dispersion outlier’ genes. |
adjust |
method used to adjust goodness of fit p-values for multiple testing. |
plot |
logical, if |
main |
character, title for the plot. |
... |
other arguments are passed to |
This function is useful for evaluating the adequacy of a global dispersion model, such as a constant or trended dispersion.
If plot=TRUE
, then it produces a qq-plot similar to those in Figure 2 of McCarthy et al (2012).
A list with the following components:
gof.statistics |
numeric vector of deviance statistics, which are the statistics used for the goodness of fit test |
gof.pvalues |
numeric vector of p-values providing evidence of poor fit; computed from the chi-square distribution on the residual degrees of freedom from the GLM fits. |
outlier |
logical vector indicating whether or not each gene is a ‘dispersion outlier’ (i.e., the model fit is poor for that gene indicating that the dispersion estimate is not good for that gene). |
df |
scalar, the residual degrees of freedom from the GLM fit for which the goodness of fit statistics have been computed. Also the degrees of freedom for the goodness of fit statistics for the LR (chi-quare) test for significance. |
If plot=TRUE
, then a plot is also produced on the current graphics device.
This function should not be used with tagwise estimated dispersions such as those from estimateGLMTagwiseDisp
or estimateDisp
.
glmfit
should contain trended or constant dispersions.
Davis McCarthy and Gordon Smyth
McCarthy, DJ, Chen, Y, Smyth, GK (2012). Differential expression analysis of multifactor RNA-Seq experiments with respect to biological variation. Nucleic Acids Research 40, 4288-4297 https://doi.org/10.1093/nar/gks042
glmFit
for more information on fitting NB GLMs to DGE data.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | nlibs <- 3
ngenes <- 100
dispersion.true <- 0.1
# Make first gene respond to covariate x
x <- 0:2
design <- model.matrix(~x)
beta.true <- cbind(Beta1=2,Beta2=c(2,rep(0,ngenes-1)))
mu.true <- 2^(beta.true %*% t(design))
# Generate count data
y <- rnbinom(ngenes*nlibs,mu=mu.true,size=1/dispersion.true)
y <- matrix(y,ngenes,nlibs)
colnames(y) <- c("x0","x1","x2")
rownames(y) <- paste("gene",1:ngenes,sep=".")
d <- DGEList(y)
# Normalize
d <- calcNormFactors(d)
# Fit the NB GLMs
fit <- glmFit(d, design, dispersion=dispersion.true)
# Check how good the fit is for each gene
gof(fit)
|
Loading required package: limma
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.