Description Usage Arguments Value Author(s) See Also Examples
This is used to apply a scaling normalization to set of arrays. This normalization can be at the array scale (thus giving all arrays the same mean or median), or at the probeset scale (thus giving all probesets the same mean or median).
It is generally recommended that the default option (median array scaling) is used after running mmgmos
and before running pumaComb
and/or pumaDE
. There are however, situations where this might not be the recommended, for example in time series experiments where it is expected than there will be general up-regulation or down-regulation in overall gene expression levels between time points.
1 2 3 4 5 6 7 |
eset |
An object of class |
arrayScale |
A method of scale normalisation at the array level. |
probesetScale |
A method of scale normalisation at the probe set level. |
probesetNormalisation |
If not NULL normalises the expression levels to have zero mean and adjusts the variance of the gene expression according to the zero-centered normalisation. |
replicates |
List of integer vectors indicating which arrays are replicates. |
An object of class ExpressionSet
holding the normalised data.
Richard D. Pearson
Methods mmgmos
, pumaComb
and pumaDE
1 2 3 4 5 6 7 8 9 | # Next 4 lines commented out to save time in package checks, and saved version used
# if (require(affydata)) {
# data(Dilution)
# eset_mmgmos <- mmgmos(Dilution)
# }
data(eset_mmgmos)
apply(exprs(eset_mmgmos),2,median)
eset_mmgmos_normd <- pumaNormalize(eset_mmgmos)
apply(exprs(eset_mmgmos_normd),2,median)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.