Description Usage Arguments Value See Also Examples
Make 96 trinucleotide mutation count matrix
1 | 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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## 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.