Skip to content

Commit

Permalink
Merge pull request lh3#293 from nh13/patch-2
Browse files Browse the repository at this point in the history
Output mapping quality with XB
  • Loading branch information
lh3 authored Mar 6, 2022
2 parents cb7e5df + e050ec9 commit 41e0078
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bwamem_extra.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ char **mem_gen_alt(const mem_opt_t *opt, const bntseq_t *bns, const uint8_t *pac
if (opt->flag & MEM_F_XB) {
kputc(',', &str);
kputw(t.score, &str);
kputc(',', &str);
kputw(t.mapq, &str);
}
kputc(';', &str);
free(t.cigar);
Expand Down

0 comments on commit 41e0078

Please sign in to comment.