Skip to content

Commit

Permalink
add debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
adraismawur committed Nov 6, 2023
1 parent c980857 commit a5cdc5e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions big_scape/comparison/extend.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ def extend(
max_match_dist: The maximum distance to look in the target for a match before
it is considered a mismatch
"""
logging.info(comparable_region.pair)
logging.info("before:")
logging.info(comparable_region)

logging.debug("before extend:")
logging.debug(comparable_region)

# get the cds lists
a_cds = comparable_region.pair.region_a.get_cds(True)
Expand Down Expand Up @@ -149,9 +149,8 @@ def extend(
comparable_region.a_start -= query_exp
comparable_region.b_start -= target_exp

logging.info("after:")
logging.info(comparable_region)
logging.info("")
logging.debug("after extend:")
logging.debug(comparable_region)


def get_target_indexes(
Expand Down

0 comments on commit a5cdc5e

Please sign in to comment.