Skip to content

Commit

Permalink
make debugging happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ekg committed Jul 27, 2024
1 parent c341e1e commit 4f996e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/common/wflign/src/wflign_patch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1223,10 +1223,12 @@ void write_merged_alignment(

#ifdef WFA_PNG_TSV_TIMING
if (emit_patching_tsv) {
*out_patching_tsv
for (auto& aln : patch_alignments) {
*out_patching_tsv
<< query_name << "\t" << query_pos << "\t" << query_pos + query_delta << "\t"
<< target_name << "\t" << (target_pos - target_pointer_shift) << "\t" << (target_pos - target_pointer_shift + target_delta) << "\t"
<< patch_aln.ok << std::endl;
<< aln.ok << std::endl;
}
}
#endif
}
Expand Down

0 comments on commit 4f996e0

Please sign in to comment.