Description Usage Arguments Value Author(s) See Also Examples
Function to retrieve overlapping intervals that overlap at least by a specified fraction of their widths.
1 | fracOverlap(I1, I2, min.frac=0.0, both=TRUE, mem.friendly=FALSE)
|
I1 |
object that inherits from class |
I2 |
object that inherits from class |
min.frac |
numeric; minimum required fraction of each of the two interval widths by which two intervals should overlap in order to be marked as overlapping. |
both |
logical; shall both overlap partners meet the minimum
fraction |
mem.friendly |
logical; if set to |
An object of class data.frame
with one row each for a pair of
overlapping elements.
Index1 |
Index of interval in first interval list |
Index2 |
Index of interval in second interval list |
n |
number of bases that the two intervals overlap |
fraction1 |
fraction of interval 1's width by which the two intervals overlap |
fraction2 |
fraction of interval 2's width by which the two intervals overlap |
J. Toedling
1 2 3 | data("gen_ints", package="genomeIntervals")
i[4,2] <- 13L
fracOverlap(i, i, 0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.