Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
jermp committed Mar 1, 2022
1 parent b16b6ca commit c6db657
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/check_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ bool check_correctness_abundances(std::istream& is, dictionary const& dict) {
std::cout << "ERROR for kmer_id " << kmer_id << ": expected_ab " << expected_ab
<< " but got_ab " << got_ab << std::endl;
}
if (kmer_id != 0 and kmer_id % 5000000 == 0) {
std::cout << "checked " << kmer_id << " abundances" << std::endl;
}
}

std::getline(is, line); // skip DNA sequence
Expand Down

0 comments on commit c6db657

Please sign in to comment.