Description Usage Arguments Value Author(s) References See Also Examples
This function computes signature scores and risk classifications from gene expression values following the algorithm developed by the TCGA consortium for ovarian cancer.
1 2 3 |
data |
Matrix of gene expressions with samples in rows and probes in columns, dimnames being properly defined. |
annot |
Matrix of annotations with one column named as gmap, dimnames being properly defined. |
gmap |
character string containing the |
do.mapping |
|
verbose |
|
score |
Continuous signature scores |
risk |
Binary risk classification, |
mapping |
Mapping used if necessary. |
probe |
If mapping is performed, this matrix contains the correspondence between the gene list (aka signature) and gene expression data. |
Benjamin Haibe-Kains
Bell D, Berchuck A, Birrer M et al. (2011) "Integrated genomic analyses of ovarian carcinoma", Nature, 474(7353):609–615
1 2 3 4 5 6 7 8 | ## load the ovcTCGA signature
data(sigOvcTCGA)
## load NKI dataset
data(nkis)
colnames(annot.nkis)[is.element(colnames(annot.nkis), "EntrezGene.ID")] <- "entrezgene"
## compute relapse score
ovcTCGA.nkis <- ovcTCGA(data=data.nkis, annot=annot.nkis, gmap="entrezgene", do.mapping=TRUE)
table(ovcTCGA.nkis$risk)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.