mut_matrix | R Documentation |
Make 96 trinucleotide mutation count matrix
mut_matrix(vcf_list, ref_genome, extension = 1)
vcf_list |
GRangesList or GRanges object. |
ref_genome |
BSgenome reference genome object |
extension |
The number of bases, that's extracted upstream and downstream of the base substitutions. (Default: 1). |
96 mutation count matrix
read_vcfs_as_granges
## See the 'read_vcfs_as_granges()' example for how we obtained the ## following data: grl <- readRDS(system.file("states/read_vcfs_as_granges_output.rds", package = "MutationalPatterns" )) ## Load the corresponding reference genome. ref_genome <- "BSgenome.Hsapiens.UCSC.hg19" library(ref_genome, character.only = TRUE) ## Construct a mutation matrix from the loaded VCFs in comparison to the ## ref_genome. mut_mat <- mut_matrix(vcf_list = grl, ref_genome = ref_genome) ## Construct a mutation matrix with a larger context. ## This is most usefull when you have many mutations per sample. mut_mat_extended <- mut_matrix(vcf_list = grl, ref_genome = ref_genome, extension = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.