Description Usage Arguments Value Author(s) References See Also Examples
View source: R/evaluateDecompositionQuality.R
'evaluateDecompositionQuality()' evaluates the quality of the decomposition
into exposures of a single tumor. The function evaluates the quality of a
decomposition obtained from the function decomposeTumorGenomes
by comparing the re-composed (=re-constructed) tumor genome mutation
frequencies to those actually observed in the tumor genome. Tumor genome
mutation frequencies are reconstructed using
composeGenomesFromExposures
and the results can optionally be plotted.
1 2 | evaluateDecompositionQuality(exposure, signatures, genome,
plot=FALSE)
|
exposure |
(Mandatory) A single vector containing the estimated
signature contributions, or exposures, of a single tumor as provided by
|
signatures |
(Mandatory) The list of signatures (vectors, data frames or matrices) for which the exposures were obtained. Each of the list objects represents one mutational signature. Vectors are used for Alexandrov signatures, data frames or matrices for Shiraishi signatures. |
genome |
(Mandatory) A single tumor genome in form of mutation
frequencies specified either in the Alexandrov or the Shiraishi format
(must match the format used for |
plot |
(Optional) If |
A named list object containing measurements for the Pearson
correlation coefficient between the reconstructed and observed mutation
frequencies, and the explained variance; or alternatively, a plot with
these measurements (see option plot
above).
Rosario M. Piro
Politecnico di Milano
Maintainer: Rosario
M. Piro
E-Mail: <rmpiro@gmail.com> or <rosariomichael.piro@polimi.it>
http://rmpiro.net/decompTumor2Sig/
Krueger, Piro (2019) decompTumor2Sig: Identification of mutational
signatures active in individual tumors. BMC Bioinformatics
20(Suppl 4):152.
decompTumor2Sig
decomposeTumorGenomes
composeGenomesFromExposures
computeExplainedVariance
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ### get Alexandrov signatures from COSMIC
signatures <- readAlexandrovSignatures()
### load preprocessed breast cancer genomes (object 'genomes') from
### Nik-Zainal et al (PMID: 22608084)
gfile <- system.file("extdata",
"Nik-Zainal_PMID_22608084-genomes-Alexandrov_3bases.Rdata",
package="decompTumor2Sig")
load(gfile)
### compute exposures
exposures <- decomposeTumorGenomes(genomes, signatures, verbose=FALSE)
### evaluate the decomposition by comparing to the original data
evaluateDecompositionQuality(exposures[[1]], signatures, genomes[[1]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.