View source: R/bladderCancerSubtypingSystems.R
| classify | R Documentation |
This function assigns molecular subtypes to bladder samples using expression data, according to several classification systems.
classify(expMat, gpl = NULL, symbol = "Gene.Symbol",
classification.systems = c("Baylor", "UNC", "CIT", "Lund", "MDA",
"TCGA"))
expMat |
Matrix or dataframe of normalized expression data. Samples are in column and probesets are in row. Rownames and colnames are required. |
gpl |
Dataframe with matching information between expMat rownames and HGNC gene symbols. The dataframe must have rownames corresponding to ExpMat rownames, and at least one column with associated gene symbols |
symbol |
Character string referring to the column name of gpl containing gene symbols |
classification.systems |
A character vector with names of the classification systems to consider among Baylor, UNC, CIT, Lund, MDA and TCGA. |
A dataframe of samples annotated according to each classification system.
This is a contribution from the Tumor Identity Cards (CIT) program founded by the 'Ligue Nationale Contre le Cancer' (France): http://cit.ligue-cancer.net. For any question please contact CITR@ligue-cancer.net
Aurelien de Reynies
data(cit)
#-- Classify using all classification types
res <- classify(cit)
head(res)
#-- Get TCGA classification
tcga_res <- res[, c("ID", "TCGA.subtype")]
head(tcga_res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.