Description Usage Arguments Value Author(s) References See Also Examples
Pre-process .CEL
files according to the one-by-one RMA method
using a reference build using rmaPreprocessing
.
1 | rmaReference(affy.batch, reference, test = FALSE)
|
affy.batch |
An |
reference |
An RMA reference object created by
|
test |
Should the supplied |
Returns a list
of length 3 with the slots:
exprs |
The one-by-one RMA pre-processed log_2-expression
|
exprs.sc |
As slot |
exprs.sc.mean |
As slot |
Steffen Falgreen <sfl (at) rn.dk>
Anders Ellern Bilgrau <abilgrau (at) math.aau.dk>
rmaPreprocessing
, readCelfiles
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # List .CEL files bundled with hemaClass
files <- list.files(system.file("extdata/celfiles", package = "hemaClass"),
full.names = TRUE)
affy.batch <- readCelfiles(files) # Read in the .CEL files
# Build references
ref.affy <- rmaPreprocessing(affy.batch)
ref.affy.2 <- rmaPreprocessing(affy.batch, quantile = ref.affy$quantile)
all(ref.affy.2$exprs - ref.affy$exprs < 0.00000001)
# Or use build-in:
ref.affy <- readCHEPRETROreference()
# RMA one-by-one pre-process using the reference:
user.affy <- rmaReference(affy.batch, ref.affy)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.