@@ -111,6 +111,7 @@ struct StatsHolder
111111
112112// post-extension
113113 uint64_t hitsFailedExtendPercentIdentTest;
114+ uint64_t hitsFailedExtendBitScoreTest;
114115 uint64_t hitsFailedExtendEValueTest;
115116 uint64_t hitsAbundant;
116117 uint64_t hitsDuplicate;
@@ -150,6 +151,7 @@ struct StatsHolder
150151 hitsPutativeAbundant = 0 ;
151152
152153 hitsFailedExtendPercentIdentTest = 0 ;
154+ hitsFailedExtendBitScoreTest = 0 ;
153155 hitsFailedExtendEValueTest = 0 ;
154156 hitsAbundant = 0 ;
155157 hitsDuplicate = 0 ;
@@ -183,6 +185,7 @@ struct StatsHolder
183185 hitsPutativeAbundant += rhs.hitsPutativeAbundant ;
184186
185187 hitsFailedExtendPercentIdentTest += rhs.hitsFailedExtendPercentIdentTest ;
188+ hitsFailedExtendBitScoreTest += rhs.hitsFailedExtendBitScoreTest ;
186189 hitsFailedExtendEValueTest += rhs.hitsFailedExtendEValueTest ;
187190 hitsAbundant += rhs.hitsAbundant ;
188191 hitsDuplicate += rhs.hitsDuplicate ;
@@ -253,12 +256,15 @@ void printStats(StatsHolder const & stats, LambdaOptions const & options)
253256 std::cout << " \n - failed pre-extend test " << R
254257 << stats.hitsFailedPreExtendTest << RR
255258 << (rem -= stats.hitsFailedPreExtendTest );
256- std::cout << " \n - failed %-identity test " << R
257- << stats.hitsFailedExtendPercentIdentTest << RR
258- << (rem -= stats.hitsFailedExtendPercentIdentTest );
259259 std::cout << " \n - failed e-value test " << R
260260 << stats.hitsFailedExtendEValueTest << RR
261261 << (rem -= stats.hitsFailedExtendEValueTest );
262+ std::cout << " \n - failed bitScore test " << R
263+ << stats.hitsFailedExtendBitScoreTest << RR
264+ << (rem -= stats.hitsFailedExtendBitScoreTest );
265+ std::cout << " \n - failed %-identity test " << R
266+ << stats.hitsFailedExtendPercentIdentTest << RR
267+ << (rem -= stats.hitsFailedExtendPercentIdentTest );
262268 std::cout << " \n - duplicates " << R
263269 << stats.hitsDuplicate << RR
264270 << (rem -= stats.hitsDuplicate );
0 commit comments