Skip to content

Commit

Permalink
Add support for the Illumina NextSeq 550DX to the two color evaluator.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrueffer committed Oct 12, 2020
1 parent eb61c53 commit 9d3d345
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/evaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ bool Evaluator::isTwoColorSystem() {
if(!r)
return false;

// NEXTSEQ500, NEXTSEQ 550, NOVASEQ
if(starts_with(r->mName, "@NS") || starts_with(r->mName, "@NB") || starts_with(r->mName, "@A0")) {
// 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")) {
delete r;
return true;
}
Expand Down Expand Up @@ -717,4 +717,4 @@ bool Evaluator::test() {
string s = "ATCGATCGAT";
cerr << eval.int2seq(eval.seq2int(s, 0, 10, -1), 10) << endl;
return eval.int2seq(eval.seq2int(s, 0, 10, -1), 10) == s;
}
}

0 comments on commit 9d3d345

Please sign in to comment.