Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Increase the max allowed base Q score from 70 to 93 #284

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/c++/lib/blt_util/qscore_cache.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct qphred_cache {
return qc().get_mapped_qscore_imp(basecall_qscore, mapping_qscore);
}

enum { MAX_QSCORE = 70, MAX_MAP = 90 };
enum { MAX_QSCORE = 93, MAX_MAP = 90 };

static void qscore_check(const int qscore, const char* label)
{
Expand Down