Skip to content

Commit

Permalink
Bugfix for 57f8035
Browse files Browse the repository at this point in the history
  • Loading branch information
lucventurini committed Aug 15, 2019
1 parent 57f8035 commit f21dcf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mikado/picking/picker.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ def __test_sortedness(self, row, coords):
else:
chrom, start, end = coords.chrom, coords.start, coords.end

if any(_ is True for _ in coords):
if any(_ is None for _ in coords):
return True
if chrom > row.chrom:
test = False
Expand Down

0 comments on commit f21dcf7

Please sign in to comment.