Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/ACEnglish/truvari into d…
Browse files Browse the repository at this point in the history
…evelop
  • Loading branch information
ACEnglish committed Oct 24, 2024
2 parents 0817fab + e7a5435 commit bed5e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion truvari/comparisons.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bed5e27

Please sign in to comment.