## S3 method for class 'DGEList':
calcNormFactors(object, method=c("TMM","RLE","upperquartile","none"),
refColumn=NULL, logratioTrim=.3, sumTrim=0.05, doWeighting=TRUE,
Acutoff=-1e10, p=0.75, ...)
## S3 method for class 'default':
calcNormFactors(object, lib.size=NULL, method=c("TMM","RLE",
"upperquartile","none"), refColumn=NULL, logratioTrim=.3,
sumTrim=0.05, doWeighting=TRUE, Acutoff=-1e10, p=0.75, ...)
matrix
of raw (read) counts or a DGEList
objectobject
.method="TMM"
. Can be a column number or a numeric vector of length nrow(object)
.method="TMM"
method="TMM"
method="TMM"
method="TMM"
method="upperquartile"
object
is a matrix
, the output is a vector with length ncol(object)
giving the relative normalization factors.
If object
is a DGEList
, then it is returned as output with the relative normalization factors in object$samples$norm.factors
.method="TMM"
is the weighted trimmed mean of M-values (to the reference) proposed by Robinson and Oshlack (2010), where the weights are from the delta method on Binomial data.
If refColumn
is unspecified, the library whose upper quartile is closest to the mean upper quartile is used.method="RLE"
is the scaling factor method proposed by Anders and Huber (2010).
We call it "relative log expression", as median library is calculated from the geometric mean of all columns and the median ratio of each sample to the median library is taken as the scale factor.
method="upperquartile"
is the upper-quartile normalization method of Bullard et al (2010), in which the scale factors are calculated from the 75% quantile of the counts for each library,
after removing genes which are zero in all libraries.
This idea is generalized here to allow scaling by any quantile of the distributions.
If method="none"
, then the normalization factors are set to 1.
For symmetry, normalization factors are adjusted to multiply to 1. The effective library size is then the original library size multiplied by the scaling factor.
Note that rows that have zero counts for all columns are trimmed before normalization factors are computed. Therefore rows with all zero counts do not affect the estimated factors.
Bullard JH, Purdom E, Hansen KD, Dudoit S. (2010) Evaluation of statistical methods for normalization and differential expression in mRNA-Seq experiments. BMC Bioinformatics 11, 94.
Robinson MD, Oshlack A (2010). A scaling normalization method for differential expression analysis of RNA-seq data. Genome Biology 11, R25.
y <- matrix( rpois(1000, lambda=5), nrow=200 )
calcNormFactors(y)
Run the code above in your browser using DataLab