We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: