Skip to content

Commit c9a9b89

Browse files
committed
replace with function calls
1 parent 0c25808 commit c9a9b89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chimera.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ auto find_matches(struct chimera_info_s * ci) -> void
309309
case 'M':
310310
for (int k = 0; k < run; ++k)
311311
{
312-
if ((chrmap_4bit[(int) (qseq[qpos])] &
313-
chrmap_4bit[(int) (tseq[tpos])]) != 0U)
312+
if ((map_4bit(qseq[qpos]) &
313+
map_4bit(tseq[tpos])) != 0U)
314314
{
315315
ci->match[(i * ci->query_len) + qpos] = 1;
316316
}

0 commit comments

Comments
 (0)