Skip to content

Commit

Permalink
Removed some asserts that will fail for valid reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Wilm committed Dec 22, 2020
1 parent 6ef81d7 commit e55414f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lofreq/plp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1276,8 +1276,8 @@ void compile_plp_col(plp_col_t *plp_col,

for (i = 0; i < NUM_NT4; ++i) {
assert(plp_col->fw_counts[i] + plp_col->rv_counts[i] == plp_col->base_quals[i].n);
assert(plp_col->base_quals[i].n == plp_col->baq_quals[i].n);
assert(plp_col->base_quals[i].n == plp_col->map_quals[i].n);
/* FIXME only makes sense if BAQ is on assert(plp_col->base_quals[i].n == plp_col->baq_quals[i].n); */
/* FIXME only makes sense if MQ is on assert(plp_col->base_quals[i].n == plp_col->map_quals[i].n); */
/* assert(plp_col->map_quals[i].n == plp_col->source_quals[i].n);*/
}
}
Expand Down

0 comments on commit e55414f

Please sign in to comment.