We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c25808 commit c9a9b89Copy full SHA for c9a9b89
src/chimera.cc
@@ -309,8 +309,8 @@ auto find_matches(struct chimera_info_s * ci) -> void
309
case 'M':
310
for (int k = 0; k < run; ++k)
311
{
312
- if ((chrmap_4bit[(int) (qseq[qpos])] &
313
- chrmap_4bit[(int) (tseq[tpos])]) != 0U)
+ if ((map_4bit(qseq[qpos]) &
+ map_4bit(tseq[tpos])) != 0U)
314
315
ci->match[(i * ci->query_len) + qpos] = 1;
316
}
0 commit comments