marbl / meryl

A genomic k-mer counter (and sequence utility) with nice features.
115 stars 13 forks source link

Logging of reads kept and total reads wrong in lookup -exclude #21

Open ASLeonard opened 3 years ago

ASLeonard commented 3 years ago

Just noticed when looking at some results, the order of values is swapped here for the total reads analysed and the number of reads kept.

fprintf(stderr, "\nIncluding %lu reads (or read pairs) out of %lu.\n", g->nReadsTotal, g->nReadsFound);

Should of course be

fprintf(stderr, "\nIncluding %lu reads (or read pairs) out of %lu.\n", g->nReadsFound, g->nReadsTotal);