Skip to content
Merged
Changes from 2 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
9 changes: 7 additions & 2 deletions src/evaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ bool Evaluator::isTwoColorSystem() {
if(!r)
return false;

// NEXTSEQ500, NEXTSEQ 550/550DX, NOVASEQ
if(starts_with(r->mName, "@NS") || starts_with(r->mName, "@NB") || starts_with(r->mName, "@NDX") || starts_with(r->mName, "@A0")) {
// Via https://knowledge.illumina.com/instrumentation/general/instrumentation-general-reference_material-list/000003880
// NEXTSEQ 500/550: @NS @NB
// ? NEXTSEQ 550DX: @NDX
// NEXTSEQ 1000/2000: @VL @VH
// NOVASEQ 6000: @A
// NOVASEQ X PLUS: @LH
if(starts_with(r->mName, "@NS") || starts_with(r->mName, "@NB") || starts_with(r->mName, "@NDX") || starts_with(r->mName, "@VL") || starts_with(r->mName, "@VH") || starts_with(r->mName, "@A") || starts_with(r->mName, "@LH")) {
delete r;
return true;
}
Expand Down
Loading