exportToGtf {eisaR} | R Documentation |
Export the features in a GRangesList generated by getFeatureRanges
to a GTF file. The function will represent each row of each of the
entries as an "exon", each individual entry as a "transcript", and
aggregate all features belonging to the same gene as a "gene" entry in
the GTF file.
exportToGtf(grl, filepath)
grl |
|
filepath |
Path to output GTF file |
Does not return anything, generates a GTF file
Charlotte Soneson
## Get feature ranges grl <- getFeatureRanges( gtf = system.file("extdata/small_example.gtf", package = "eisaR"), featureType = c("spliced", "intron"), intronType = "separate", flankLength = 5L, joinOverlappingIntrons = FALSE, verbose = TRUE ) ## Export GTF exportToGtf(grl = grl, filepath = file.path(tempdir(), "exported.gtf"))