GRmidpoint-methods {compEpiTools} | R Documentation |
Returns a GRanges containing the mid point of a GRanges
To be used in this form:
GRmidpoint(Object)
where Object is a GRanges.
A GRanges with width 1 containing the mid points of each range in Object is returned.
gr <- GRanges(seqnames=Rle('chr1',2), ranges=IRanges(start=c(10,100), end=c(50, 150))) GRmidpoint(gr)