TCGAanalyze_Stemness | R Documentation |
TCGAanalyze_Stemness generate the mRNAsi score
TCGAanalyze_Stemness(stemSig, dataGE, colname.score = "stemness_score")
stemSig |
is a vector of the stemness Signature generated using gelnet package. Please check the data from https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5902191/
|
dataGE |
is a matrix of Gene expression (genes in rows, samples in cols) from TCGAprepare |
colname.score |
Column name of the output. Default "stemness_score" |
table with samples and selected score
# Selecting TCGA breast cancer (10 samples) for example stored in dataBRCA
dataNorm <- TCGAanalyze_Normalization(
tabDF = dataBRCA,
geneInfo = geneInfo
)
# quantile filter of genes
dataFilt <- TCGAanalyze_Filtering(
tabDF = dataNorm,
method = "quantile",
qnt.cut = 0.25
)
Stemness_score <- TCGAanalyze_Stemness(
stemSig = SC_PCBC_stemSig,
dataGE = dataFilt,
colname.score = "SC_PCBC_stem_score"
)
ECTO_score <- TCGAanalyze_Stemness(
stemSig = ECTO_PCBC_stemSig,
dataGE = dataFilt,
colname.score = "ECTO_PCBC_stem_score"
)
MESO_score <- TCGAanalyze_Stemness(
stemSig = MESO_PCBC_stemSig,
dataGE = dataFilt,
colname.score = "MESO_PCBC_stem_score"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.