Skip to content

Commit

Permalink
chore(call): better read repeat count log msg + print debug
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Dec 19, 2024
1 parent dd0f419 commit fedf4a8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion strkit/call/call_locus.py
Original file line number Diff line number Diff line change
Expand Up @@ -1125,8 +1125,9 @@ def get_read_length_partition_mean(p_idx: int) -> float:

if n_read_cn_iters >= max_rcn_iters:
logger_.debug(
"%s - locus repeat counting exceeded maximum # iterations (%d)",
"%s - %s: read repeat counting exceeded maximum # iterations (%d)",
locus_log_str,
rn,
n_read_cn_iters,
)

Expand Down Expand Up @@ -1193,6 +1194,10 @@ def get_read_length_partition_mean(p_idx: int) -> float:
locus_log_str,
tr_read_seq_wc[:20],
)

print(ref_seq)
print(tr_read_seq_wc)

return {
**locus_result,
"peaks": None,
Expand Down

0 comments on commit fedf4a8

Please sign in to comment.