Description Usage Arguments Details Value Author(s) References See Also Examples
Apply variance stabilizing normalization (vsn) to limma data objects.
1 | normalizeVSN(x, ...)
|
x |
a numeric |
... |
other arguments are passed to |
This is an interface to the vsnMatrix
function from the vsn package.
The input x
should contain raw intensities.
If x
contains background and well as foreground intensities, these will be subtracted from the foreground intensities before vsnMatrix
is called.
Note that the vsn algorithm performs background correction and normalization simultaneously. If the data are from two-color microarrays, then the red and green intensities are treated as if they were single channel data, i.e., red and green channels from the same array are treated as unpaired. This algorithm is therefore separate from the backgroundCorrection, normalizeWithinArrays, then normalizeBetweenArrays paradigm used elsewhere in the limma package.
The class of the output depends on the input.
If x
is a matrix, then the result is a matrix of the same size.
If x
is an EListRaw
object, then an EList
object with expression values on the log2 scale is produced.
For x
is an RGList
, then an MAList
object with M and A-values on the log2 scale is produced.
Gordon Smyth
Huber, W, von Heydebreck, A, Sueltmann, H, Poustka, A, Vingron, M (2002). Variance stabilization applied to microarray data calibration and to the quantification of differential expression. Bioinformatics 18 Supplement 1, S96-S104.
An overview of LIMMA functions for normalization is given in 05.Normalization.
See also vsnMatrix
in the vsn package.
1 2 3 4 | ngenes <- 100
narrays <- 4
x <- matrix(rnorm(ngenes*narrays),100,4)
y <- normalizeVSN(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.