From c21e3a7c8cbc55c5096ef3f16789131984f7f1e8 Mon Sep 17 00:00:00 2001 From: Shuangxi Ji Date: Thu, 9 Nov 2023 22:38:11 -0600 Subject: [PATCH] Update muse_call.cpp --- src/muse_call.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/muse_call.cpp b/src/muse_call.cpp index 3c62eac..2613120 100755 --- a/src/muse_call.cpp +++ b/src/muse_call.cpp @@ -651,7 +651,7 @@ inline int bam_aux_type2size(int x) { } #define __skip_tag(s) do { \ -int type = toupper(*(s)); \ +int type = (*(s)); \ ++(s); \ if (type == 'Z' || type == 'H') { while (*(s)) ++(s); ++(s); } \ else if (type == 'B') (s) += 5 + bam_aux_type2size(*(s)) * (*(int32_t*)((s)+1)); \