Skip to content

Commit

Permalink
fix: minor change to match cigar error statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jamorrison committed Mar 6, 2024
1 parent 19253ca commit c54b1e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dupsifter.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ uint8_t infer_bsstrand(refcache_t *rs, bam_hdr_t *hdr, bam1_t *b, uint32_t min_b
qpos += oplen;
break;
default:
fatal_error("[dupsifter] ERROR: Unknown cigar, %u\n", op);
fatal_error("[dupsifter] ERROR: Unknown cigar operation, %u\n", op);
}
}
if (nC2T >= nG2A) { return 0; }
Expand Down

0 comments on commit c54b1e8

Please sign in to comment.