Skip to content
New issue

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

Feature/mm flag modifier #36

Merged
15 commits merged into from
Mar 7, 2019
Prev Previous commit
Next Next commit
Remove BAM_FDUP (dupicate flag) from mismatchQC bad flags list
  • Loading branch information
David Jones committed Mar 7, 2019
commit 727bacf407d519406365b3ec1bfb32919913f390
2 changes: 1 addition & 1 deletion c/mismatchQc.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ long long int marked_count = 0;
read fails platform/vendor quality checks,
read is PCR or optical duplicate
*/
const int BAD_FLAGS = BAM_FUNMAP | BAM_FMUNMAP | BAM_FQCFAIL | BAM_FDUP | BAM_FSECONDARY | BAM_FSUPPLEMENTARY;
const int BAD_FLAGS = BAM_FUNMAP | BAM_FMUNMAP | BAM_FQCFAIL | BAM_FSECONDARY | BAM_FSUPPLEMENTARY;

enum rw_opts {
W_CRAM = 1,
Expand Down