Description Usage Arguments Details Value Examples
View source: R/eventDetection.R
Detecting nuclear mitochondria fusion events.
1 | numtDetect(gr, nonStandardChromosomes = FALSE, max_ins_dist = 1000)
|
gr |
A GRanges object |
nonStandardChromosomes |
Whether to report insertion sites on non-standard reference chromosomes. Default value is set to FALSE. |
max_ins_dist |
The maxium distance allowed on the reference genome between the paired insertion sites. Only intra-chromosomal NUMT events are supported. Default value is 1000. |
Nuclear mitochondrial fusion (NUMT) is a common event found in human genomes. This function searches for NUMT events by identifying breakpoints supporting the fusion of nuclear chromosome and mitochondrial genome. Only BND notations are supported at the current stage. Possible linked nuclear insertion sites are reported using SV IDs in the candidatePartnerId metadata column.
A GRanges object of possible NUMT loci.
1 2 3 4 | vcf.file <- system.file("extdata", "MT.vcf", package = "StructuralVariantAnnotation")
vcf <- VariantAnnotation::readVcf(vcf.file, "hg19")
gr <- breakpointRanges(vcf, nominalPosition=TRUE)
numt.gr <- numtDetect(gr)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.