Effective Library Sizes
Extract effective (normalized) library sizes.
## Default S3 method: effectiveLibSizes(y, log = FALSE, ...)
y |
a object of class |
log |
logical, if |
... |
other arguments are not currently used. |
This function extracts normalized library sizes, equal to the original library sizes multiplied by the corresponding normalization factors, from an edgeR data object or fitted model object.
If the object contains a row-specific offsets (i.e., a non-sparse matrix of offsets), then the offsets for the first row are returned.
A numeric matrix of effective (normalized) library sizes.
If log=TRUE
, then natural log values are returned, equal to library size offsets for a NB log-linear model.
Gordon Smyth
ngenes <- 100 nsamples <- 4 y <- DGEList(counts=matrix(rnbinom(ngenes*nsamples,size=1,mu=10),ngenes,nsamples)) y <- calcNormFactors(y) data.frame(y$samples, eff.lib.size=effectiveLibSizes(y))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.