| gff3_to_bed12 {FLAMES} | R Documentation |
Converts a gff3 file to a bed12
gff3_to_bed12(gff3_file, bed12_file)
gff3_file |
The file path to the GFF3 file to convert |
bed12_file |
The file path of the bed12 output file. |
file path to the created bed12_file.
annot <- system.file("extdata/SIRV_anno.gtf", package = "FLAMES")
out_bed <- tempfile(fileext = ".bed12")
## Not run:
gff3_to_bed12(annot, out_bed)
## End(Not run)