checkOverlap {DIAlignR} | R Documentation |
Overlap of two time ranges
checkOverlap(x, y)
x |
(numeric) must have only two values and x[2] > x[1]. |
y |
(numeric) must have only two values and y[2] > y[1]. |
(logical) TRUE: both time ranges overlap. FALSE: both time ranges do not overlap.
Shubham Gupta, shubh.gupta@mail.utoronto.ca
ORCID: 0000-0003-3500-8152
License: (c) Author (2020) + GPL-3 Date: 2020-07-17
getChildFeature
## Not run: checkOverlap(c(9.1, 13.1), c(2.1, 3.1)) checkOverlap(c(1.1, 3.1), c(3.2, 7.1)) ## End(Not run)