mutCountMatrix | R Documentation |
Generates a count matrix of mutations. i.e, number of mutations per gene per sample.
mutCountMatrix(
maf,
includeSyn = FALSE,
countOnly = NULL,
removeNonMutated = TRUE
)
maf |
an MAF object generated by |
includeSyn |
whether to include sysnonymous variants in ouput matrix. Default FALSE |
countOnly |
Default NULL - counts all variants. You can specify type of 'Variant_Classification' to count. For e.g, countOnly = 'Splice_Site' will generates matrix for only Splice_Site variants. |
removeNonMutated |
Logical Default |
Integer Matrix
getFields
getGeneSummary
getSampleSummary
laml.maf <- system.file("extdata", "tcga_laml.maf.gz", package = "maftools")
laml <- read.maf(maf = laml.maf)
##Generate matrix
mutCountMatrix(maf = laml)
##Generate count matrix of Splice_Site mutations
mutCountMatrix(maf = laml, countOnly = 'Splice_Site')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.