We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eabd25 commit f2bbcb4Copy full SHA for f2bbcb4
src/fastqjoin.cc
@@ -283,7 +283,7 @@ auto fastq_join(struct Parameters const & parameters) -> void
283
fastq_get_header(infiles.forward.handle),
284
static_cast<int>(fastq_get_header_length(infiles.forward.handle)),
285
const_cast<char *>(final_quality.c_str()),
286
- 0,
+ static_cast<int>(fastq_get_abundance(infiles.forward.handle)),
287
static_cast<int>(total + 1),
288
-1.0);
289
}
@@ -296,7 +296,7 @@ auto fastq_join(struct Parameters const & parameters) -> void
296
static_cast<int>(needed),
297
298
299
+ static_cast<int>(fasta_get_abundance(infiles.forward.handle)),
300
301
-1.0,
302
-1,
0 commit comments