subtype.cluster {genefu} | R Documentation |
This function fits the Subtype Clustering Model as published in Desmedt et al. 2008 and Wiarapati et al. 2008. This model is actually a mixture of three Gaussians with equal shape, volume and variance (see EEI
model in Mclust
). This model is adapted to breast cancer and uses ESR1, ERBB2 and AURKA dimensions to identify the molecular subtypes, i.e. ER-/HER2-, HER2+ and ER+/HER2- (Low and High Prolif).
subtype.cluster(module.ESR1, module.ERBB2, module.AURKA, data, annot, do.mapping = FALSE, mapping, do.scale = TRUE, rescale.q = 0.05, model.name = "EEI", do.BIC = FALSE, plot = FALSE, filen, verbose = FALSE)
module.ESR1 |
Matrix containing the ESR1-related gene(s) in rows and at least three columns: "probe", "EntrezGene.ID" and "coefficient" standing for the name of the probe, the NCBI Entrez Gene id and the coefficient giving the direction and the strength of the association of each gene in the gene list. |
module.ERBB2 |
Idem for ERBB2. |
module.AURKA |
Idem for AURKA. |
data |
Matrix of gene expressions with samples in rows and probes in columns, dimnames being properly defined. |
annot |
Matrix of annotations with at least one column named "EntrezGene.ID", dimnames being properly defined. |
do.mapping |
|
mapping |
**DEPRECATED** Matrix with columns "EntrezGene.ID" and "probe" used to force the mapping such that the probes are not selected based on their variance. |
do.scale |
|
rescale.q |
Proportion of expected outliers for rescaling the gene expressions. |
do.BIC |
|
model.name |
Name of the model used to fit the mixture of Gaussians with the Mclust from the |
plot |
|
filen |
Name of the csv file where the subtype clustering model must be stored. |
verbose |
|
model |
Subtype Clustering Model (mixture of three Gaussians), like |
BIC |
Bayesian Information Criterion for the Subtype Clustering Model with number of clusters ranging from 1 to 10. |
subtype |
Subtypes identified by the Subtype Clustering Model. Subtypes can be either "ER-/HER2-", "HER2+" or "ER+/HER2-". |
subtype.proba |
Probabilities to belong to each subtype estimated by the Subtype Clustering Model. |
subtype2 |
Subtypes identified by the Subtype Clustering Model using AURKA to discriminate low and high proliferative tumors. Subtypes can be either "ER-/HER2-", "HER2+", "ER+/HER2- High Prolif" or "ER+/HER2- Low Prolif". |
subtype.proba2 |
Probabilities to belong to each subtype (including discrimination between lowly and highly proliferative ER+/HER2- tumors, see |
module.scores |
Matrix containing ESR1, ERBB2 and AURKA module scores. |
Benjamin Haibe-Kains
Desmedt C, Haibe-Kains B, Wirapati P, Buyse M, Larsimont D, Bontempi G, Delorenzi M, Piccart M, and Sotiriou C (2008) "Biological processes associated with breast cancer clinical outcome depend on the molecular subtypes", Clinical Cancer Research, 14(16):5158–5165.
Wirapati P, Sotiriou C, Kunkel S, Farmer P, Pradervand S, Haibe-Kains B, Desmedt C, Ignatiadis M, Sengstag T, Schutz F, Goldstein DR, Piccart MJ and Delorenzi M (2008) "Meta-analysis of Gene-Expression Profiles in Breast Cancer: Toward a Unified Understanding of Breast Cancer Sub-typing and Prognosis Signatures", Breast Cancer Research, 10(4):R65.
subtype.cluster.predict
, intrinsic.cluster
, intrinsic.cluster.predict
, scmod1.robust
, scmod2.robust
## example without gene mapping ## load expO data data(expos) ## load gene modules data(mod1) ## fit a Subtype Clustering Model scmod1.expos <- subtype.cluster(module.ESR1=mod1$ESR1, module.ERBB2=mod1$ERBB2, module.AURKA=mod1$AURKA, data=data.expos, annot=annot.expos, do.mapping=FALSE, do.scale=TRUE, plot=TRUE, verbose=TRUE) str(scmod1.expos, max.level=1) table(scmod1.expos$subtype2) ## example with gene mapping ## load NKI data data(nkis) ## load gene modules data(mod1) ## fit a Subtype Clustering Model scmod1.nkis <- subtype.cluster(module.ESR1=mod1$ESR1, module.ERBB2=mod1$ERBB2, module.AURKA=mod1$AURKA, data=data.nkis, annot=annot.nkis, do.mapping=TRUE, do.scale=TRUE, plot=TRUE, verbose=TRUE) str(scmod1.nkis, max.level=1) table(scmod1.nkis$subtype2)