Description Usage Arguments Value See Also Examples
Generate an expression from the probes
1 | generateExprVal.method.trimMean(probes, trim = 0.15)
|
probes |
a matrix of probe intensities with rows representing
probes and columns representing
samples. Usually |
trim |
the fraction (0 to 0.5) of observations to be trimmed from each end of the data before the mean is computed. |
A list containing entries:
exprs |
The expression values. |
se.exprs |
The standard error estimate. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## Not run:
# first, let affy/expresso know that the method exists
express.summary.stat.methods <- c(express.summary.stat.methods, "trimMean")
example not run, as it would take a while
RawData <- ReadAffy(celfile.path=FilePath)
expresso(RawData,
bgcorrect.method="rma",
normalize.method="quantiles",
normalize.param = list(type= "pmonly"),
pmcorrect.method="pmonly",
summary.method="trimMean")
step1 <- bg.correct(RawData, "rma")
step2 <- normalize.AffyBatch.quantiles(step1)
step3 <- computeExprSet(step2, "pmonly", "trimMean")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.