queryGff {RCAS} | R Documentation |
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.
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
data(queryRegions) data(gff) overlaps <- queryGff(queryRegions = queryRegions, gffData = gff)