Open ASLeonard opened 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);
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.
Should of course be