Skip to content

Commit

Permalink
Removed spurious logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lucventurini committed Aug 18, 2019
1 parent f99d003 commit ffdbef2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Mikado/loci/locus.py
Original file line number Diff line number Diff line change
Expand Up @@ -885,14 +885,13 @@ def define_graph(self, objects: dict, inters=None, three_prime=False):

for pos in range(len(order) - 1):
obj = order[pos]
self.logger.warning("Checking %s", obj[2])
for other_obj in order[pos + 1:]:
if obj == other_obj:
continue
elif self.overlap(obj[:2], obj[:2], positive=False, flank=0) == 0:
break
else:
self.logger.warning("Comparing %s to %s (%s')", obj[2], other_obj[2],
self.logger.debug("Comparing %s to %s (%s')", obj[2], other_obj[2],
"5" if not three_prime else "3")
edge = inters(objects[obj[2]], objects[other_obj[2]], three_prime=three_prime)
if edge:
Expand Down

0 comments on commit ffdbef2

Please sign in to comment.