gff2bed | R Documentation |
Convert GFF file to BED
gff2bed(gffpath = NULL)
gffpath |
Path to .gff file with genome annotation. |
Path to output .bed file
gff_path <- system.file("extdata", "Homo_sapiens.GRCh37.75_subset.gtf",
package="bears")
gffdir <- tempdir()
file.copy(from = gff_path, to=gffdir)
gff_file <- list.files(gffdir, full.names=TRUE, pattern=".gtf")
gff2bed(gff_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.