Description Usage Arguments Value Author(s) References See Also Examples
Calculate the RMA+ intensities using pre-stored reference quantiles and probe effects. The reference quantiles and the probe effects are the estimated parameter values from RMAing a set of microarrays (e.g. a reference set).
1 |
Future |
An |
rmapara |
Output of |
r.q |
The pre-stored vector of the quantiles that the probe intensity data of a microarray should be normalized to. |
p.e |
A pre-stored list of probe effects. It is a probe.coefs object of
PLMset class in |
bg |
A logical flag. If |
The RMA+ intensities of Future
.
Kai-Ming Chang(kaiming@gmail.com)
Chang,K.M., Harbron,C., South,M.C. (2006) An Exploration of Extensions to the RMA Algorithm. Available with the RefPlus package.
PLMset-class
,rma.para
,
rmaref.predict
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | if (require(affydata)) {
## Use Dilution in affydata package
data(Dilution)
##Calculate RMA intensities using the rma function.
Ex0<-exprs(rma(Dilution))
## Background correct, estimate the probe effects, and calculate the
## RMA intensities using rma.para function.
Para<-rma.para(Dilution,bg=TRUE,exp=TRUE)
Ex1<-Para[[3]]
## Calculate the RMA+ intensity using rmaplus function.
Ex2<-rmaplus(Dilution, rmapara=Para, bg = TRUE)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.