From e641ee5cf2f6be32215539dfa94d5376a56e956b Mon Sep 17 00:00:00 2001 From: Heng Li Date: Mon, 17 Aug 2009 08:34:57 +0000 Subject: [PATCH] * samtools-0.1.5-30 (r447) * fixed a bug in bam_aux_get(): 'A' is not checked --- bam_aux.c | 1 - bamtk.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bam_aux.c b/bam_aux.c index 6a82d9a..d0d733f 100644 --- a/bam_aux.c +++ b/bam_aux.c @@ -42,7 +42,6 @@ uint8_t *bam_aux_get(const bam1_t *b, const char tag[2]) s = bam1_aux(b); while (s < b->data + b->data_len) { int x = (int)s[0]<<8 | s[1]; - printf("%c%c\n", s[0], s[1]); s += 2; if (x == y) return s; __skip_tag(s); diff --git a/bamtk.c b/bamtk.c index ef0e052..7150c78 100644 --- a/bamtk.c +++ b/bamtk.c @@ -9,7 +9,7 @@ #endif #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.1.5-29 (r445)" +#define PACKAGE_VERSION "0.1.5-30 (r447)" #endif int bam_taf2baf(int argc, char *argv[]); -- 2.39.2