Skip to content

Commit

Permalink
--fastq-output is not supported with --out-fmt legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Sep 10, 2017
1 parent cfa43fa commit c470c35
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/classify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,12 +397,6 @@ void classify_sequence(DNASequence &dna, ostringstream &koss,
(*oss_ptr) << ">" << header2 << endl
<< seq2 << endl;
}
else if (Fastq_output && Output_format == "legacy") {
(*oss_ptr) << "@" << dna.header_line << endl
<< dna.seq << endl
<< "+" << endl
<< dna.quals << endl;
}
else if (! Fastq_output && Output_format == "legacy") {
(*oss_ptr) << ">" << dna.header_line << endl
<< dna.seq << endl;
Expand Down

0 comments on commit c470c35

Please sign in to comment.