Description Usage Arguments Value Examples
View source: R/report_functions.R
This function checks overlaps between the regions in input query and in reference. Input query should be in BED format and reference should be in GFF format. Both data are imported as GRanges object.
1 | queryGff(queryRegions, gffData)
|
queryRegions |
GRanges object imported from a BED file using
|
gffData |
GRanges object imported from a GTF file using |
a GRanges object (a subset of input gff) with an additional column 'overlappingQuery' that contains the coordinates of query regions that overlap the target annotation features
1 2 3 | data(queryRegions)
data(gff)
overlaps <- queryGff(queryRegions = queryRegions, gffData = gff)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.