Description Usage Arguments Details Value Examples
Converting breakpoint GRanges to BEDPE-like dataframe
1 |
gr |
A GRanges object. |
breakpointgr2bedpe
converts a breakpoint GRanges to a BEDPE-formatted
dataframe. The BEDPE format consists of two sets of genomic loci, optinal
columns of name, score, strand1, strand2 and any user-defined fields.
See https://bedtools.readthedocs.io/en/latest/content/general-usage.html
for more details of BEDPE format.
A BEDPE-formatted data frame.
1 2 3 4 5 | #coverting a GRanges object to BEDPE-like dataframe
vcf.file <- system.file("extdata", "gridss.vcf", package = "StructuralVariantAnnotation")
vcf <- VariantAnnotation::readVcf(vcf.file, "hg19")
gr <- breakpointRanges(vcf)
breakpointgr2bedpe(gr)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.