Commit d0571fb 1 parent ecc221b commit d0571fb Copy full SHA for d0571fb
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ int run_strobealign(int argc, char **argv) {
364
364
<< " Number of rescue NAMs: " << std::setw (12 ) << statistics.n_rescue_nams
365
365
<< " Per rescue attempt: " << std::setw (7 ) << static_cast <float >(statistics.n_rescue_nams ) / statistics.nam_rescue << std::endl;
366
366
logger.info ()
367
- << " Total mapping sites tried: " << statistics.tot_all_tried << std::endl
367
+ << " Total mapping sites tried: " << statistics.tried_alignment << std::endl
368
368
<< " Total calls to ssw: " << statistics.tot_aligner_calls << std::endl
369
369
<< " Inconsistent NAM ends: " << statistics.inconsistent_nams << std::endl
370
370
<< " Mates rescued by alignment: " << statistics.tot_rescued << std::endl
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ struct AlignmentStatistics {
41
41
uint64_t n_rescue_nams{0 };
42
42
uint64_t tot_aligner_calls{0 };
43
43
uint64_t tot_rescued{0 };
44
- uint64_t tot_all_tried {0 };
44
+ uint64_t tried_alignment {0 };
45
45
uint64_t inconsistent_nams{0 };
46
46
uint64_t nam_rescue{0 };
47
47
@@ -60,7 +60,7 @@ struct AlignmentStatistics {
60
60
this ->n_rescue_nams += other.n_rescue_nams ;
61
61
this ->tot_aligner_calls += other.tot_aligner_calls ;
62
62
this ->tot_rescued += other.tot_rescued ;
63
- this ->tot_all_tried += other.tot_all_tried ;
63
+ this ->tried_alignment += other.tried_alignment ;
64
64
this ->inconsistent_nams += other.inconsistent_nams ;
65
65
this ->nam_rescue += other.nam_rescue ;
66
66
return *this ;
@@ -71,7 +71,7 @@ struct AlignmentStatistics {
71
71
this ->n_rescue_nams += details.rescue_nams ;
72
72
this ->nam_rescue += details.nam_rescue ;
73
73
this ->tot_rescued += details.mate_rescue ;
74
- this ->tot_all_tried += details.tried_alignment ;
74
+ this ->tried_alignment += details.tried_alignment ;
75
75
this ->inconsistent_nams += details.inconsistent_nams ;
76
76
77
77
return *this ;
You can’t perform that action at this time.
0 commit comments