Skip to content

Commit

Permalink
Merge pull request ksahlin#268 from ksahlin/timer-nam-sorting
Browse files Browse the repository at this point in the history
Fix timing of NAM sorting
  • Loading branch information
marcelm authored Apr 26, 2023
2 parents 27b7977 + 359efd8 commit 63ec47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aln.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ void align_PE_read(
Timer nam_sort_timer;
std::sort(nams1.begin(), nams1.end(), score);
std::sort(nams2.begin(), nams2.end(), score);
statistics.tot_sort_nams += nam_timer.duration();
statistics.tot_sort_nams += nam_sort_timer.duration();

Timer extend_timer;
if (!map_param.is_sam_out) {
Expand Down

0 comments on commit 63ec47b

Please sign in to comment.