Skip to content

Commit

Permalink
Remove check of same qual string length
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Sep 20, 2018
1 parent 67ea5a1 commit 506c620
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/assembler/mergereads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ int mergereads(int argn, const char **argv, const Command& command) {
const KSeqWrapper::KSeqEntry &read1 = kseq1->entry;
const KSeqWrapper::KSeqEntry &read2 = kseq2->entry;

if (read1.qual.l != read2.qual.l) {
Debug(Debug::ERROR) << "Invalid FASTQ entry " << i << ".\n";
return EXIT_FAILURE;
}

r1->seq = read1.sequence.s;
r1->seq_len = read1.sequence.l;
Expand Down

0 comments on commit 506c620

Please sign in to comment.