Skip to content

Commit

Permalink
Log match requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
alneberg committed Feb 2, 2024
1 parent 9541207 commit 79fa1f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion anglerfish/explore/explore.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ def run_explore(
after_thres = round(adaptor_end.len_after_index() * good_hit_threshold)
insert_thres_low = insert_thres_low
insert_thres_high = insert_thres_high

log.info(
f"Requiring at least {before_thres} and {after_thres} matches before and after index region respectively for {adaptor_end_name}"
)
requirements = (
(df_mim["adapter"] == f"{adaptor.name}_{adaptor_end_name}")
& (df_mim["match_1_len"] >= (before_thres))
Expand Down

0 comments on commit 79fa1f1

Please sign in to comment.