Description Usage Arguments Details Value Author(s) References Examples
Classification of DLBCL samples according to the ABC/GCB classifier.
1 |
new.data |
An expression matrix. |
NC.range |
A |
The function ABC/GCB classifies DLBCL patients according to the cell of origin for the tumor.
A list
of probabilities and classes regarding each patients
association with the classes.
Steffen Falgreen <sfl (at) rn.dk>
Anders Ellern Bilgrau <abilgrau (at) math.aau.dk>
Reference to the ABC/GCB and hemaClass paper.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | files <- dir(system.file("extdata/celfiles", package = "hemaClass"),
full.names = TRUE)
affyBatch <- readCelfiles(filenames = files)
# The cel files are pre-processed
affyRMA <- rmaPreprocessing(affyBatch)
# The function rmaPreprocessing returns median centered and scaled
# expression values in the slot exprs.sc.
# The slot exprs.sc.mean contains mean cetered and scaled expression values.
# This scaling can also be achieved using the function microarrayScale.
affyRMA.sc <- microarrayScale(affyRMA$exprs, center = "median")
# We may now use the ABCGCB classifier
ABCGCB(affyRMA.sc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.