Description Usage Arguments Value Author(s) See Also Examples
Reorder the exon numbers in a gtf annotation
1 | reorderExonNumbers(exons, by = "transcript_id")
|
exons |
GRanges object made from a GTF with ONLY exon annotations (no gene, transcript, CDS etc.) |
by |
what column are the transcripts grouped by? |
The same input GRanges, but with exon numbers reordered.
Beth Signal
Other gtf manipulation: UTR2UTR53
,
addBroadTypes
,
exonsToTranscripts
,
filterGtfOverlap
,
removeDuplicateTranscripts
,
removeSameExon
1 2 3 4 | gtf <- rtracklayer::import(system.file("extdata","example_gtf.gtf",
package = "GeneStructureTools"))
exons <- gtf[gtf$type=="exon"]
exons <- reorderExonNumbers(exons)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.