Skip to content

Commit

Permalink
fix: remove overload
Browse files Browse the repository at this point in the history
  • Loading branch information
frederic-mahe committed Feb 14, 2025
1 parent a0aca20 commit 75dd0c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fastq_stats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ auto q2p(double quality_score) -> double {
}


auto q2p(uint64_t quality_score) -> double {
static constexpr auto base = 10.0;
return std::pow(base, -quality_score / base);
}
// auto q2p(uint64_t quality_score) -> double {
// static constexpr auto base = 10.0;
// return std::pow(base, -quality_score / base);
// }


auto check_quality_score(struct Parameters const & parameters, int const quality_score) -> void {
Expand Down

0 comments on commit 75dd0c4

Please sign in to comment.