Description Usage Arguments Value Author(s) References Examples
View source: R/normalization.R
Normalizes RNA-seq count data using previously published approaches. Each samples' read counts are corrected by a normalizing factor. The options are "RLE" by (Anders and Huber, 2010), and "upperquartile" by (Bullard et al., 2010).
1 | normalizeData(X, normalization)
|
X |
data a raw data matrix, where' columns are interpreted as samples and rows as genomic regions. |
normalization |
method used for normalizing the reads. RLE is the method used by (Anders and Huber, 2010), upperquartile is the Upper-Quartile method from (Bullard et al., 2010), and none deactivates normalization. (Default = "RLE"). |
"list" A list containing the normalized data (in its "X" component) as well as the size-factors used for the normalization ("sizeFactors").
Guenter Klambauer klambauer@bioinf.jku.at and Thomas Unterthiner unterthiner@bioinf.jku.at
Anders, S. and Huber, W. (2010). Differential expression analysis for sequence count data. Genome Biol, 11(10), R106.
Bullard, J. H., Purdom, E., Hansen, K. D., and Dudoit, S. (2010). Evaluation of statistical methods for normalization and differential expression in mRNA-seq experiments. BMC Bioinformatics, 11, 94.
1 2 | data(dexus)
norm <- normalizeData(countsBottomly,"RLE")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.