diff --git a/truvari/comparisons.py b/truvari/comparisons.py index ddb81108..1b759531 100644 --- a/truvari/comparisons.py +++ b/truvari/comparisons.py @@ -31,7 +31,7 @@ def coords_within(qstart, qend, rstart, rend, end_within): :rtype: bool """ # REPL types, probably - if qstart == rstart - 1 and qend == rend: + if (qstart == rstart - 1 or qstart == rstart) and qend == rend: return True if end_within: ending = qend <= rend