Description Usage Arguments Value Author(s) See Also Examples
Calculates the Adjusted Measure of Reproducibility (MOR2003a), which is
by default the (scalar) mean value of all genewise robust variability
measures given by getGeneVariability()
, either the standard
deviation or the median absolute deviation (MAD), weighted by the
inverse of the estimated standard deviation of the log-ratios at the
given log-intensities. Any quantile(s) of these can be returned by
setting argument probs
.
1 2 |
robust |
If |
probs |
The quantiles of the genewise variabilities returned. If
|
force |
If |
slides |
The slides which should be included in the calculations.
If |
Returns a vector
of the quantiles of the genewise variabilities asked
for. By default the mean value of all genewise variabilities (MOR2003a)
is returned.
Henrik Bengtsson (http://www.braju.com/R/)
*getAdjustedSpotVariability()
*getMOR()
*getSpotVariability()
For more information see MAData
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | SMA$loadData("mouse.data")
# Keep only slides of treatment 1
mouse.data <- lapply(mouse.data, FUN=function(x) x[,4:6])
layout <- Layout$read("MouseArray.Layout.dat", path=system.file("data-ex", package="aroma"))
raw <- RawData(mouse.data, layout=layout)
ma <- getSignal(raw, bgSubtract=TRUE)
ma.norm <- clone(ma)
normalizeWithinSlide(ma.norm, method="s")
normalizeAcrossSlides(ma.norm)
mor <- getMOR2003a(ma)
mor.norm <- getMOR2003a(ma.norm)
cat("MOR2003a for non-normalized data:", mor, "\n")
cat("MOR2003a for normalized data:", mor.norm, "\n")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.