Description Usage Arguments Value Examples
This function takes an gtf/gff object. If the 
features exon and intron are present, then, it attempts 
to find a set of exon and intron coordinates that do NOT overlap with each 
other. If the intron coordinates are not present, it constructs the introns 
first using gread::construct_introns and then attempts to extract 
non-overlapping exonic and intronic coordinates. If exon feature is 
not present, it returns an error.
Note: This function is not exported at the moment.
1  | non_overlaps(x, transcript_id = "transcript_id", gene_id = "gene_id")
 | 
x | 
 An object of class   | 
transcript_id | 
 Column name in   | 
gene_id | 
 Column name in   | 
Returns a list of GRanges objects containing 
non overlapping exons and non overlapping introns.
1 2 3 4 5 6 7  | ## Not run: 
path <- system.file("tests", package="gread")
gtf_file <- file.path(path, "sample.gtf")
gtf <- read_format(gtf_file)
non_overlaps(gtf)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.