From bde5005f39ccdde63ddc28a91ab7b76d2bb10192 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Thu, 23 May 2013 12:48:18 -0400 Subject: [PATCH] r396: er... the new tag is named SA not SP --- bwamem.c | 2 +- main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bwamem.c b/bwamem.c index c0bd0ab..801ea7e 100644 --- a/bwamem.c +++ b/bwamem.c @@ -736,7 +736,7 @@ void mem_aln2sam(const bntseq_t *bns, kstring_t *str, bseq1_t *s, int n, const m for (i = 0; i < n; ++i) if (i != which && !(list[i].flag&0x100)) break; if (i < n) { // there are other primary hits; output them - kputsn("\tSP:Z:", 6, str); + kputsn("\tSA:Z:", 6, str); for (i = 0; i < n; ++i) { const mem_aln_t *r = &list[i]; int k; diff --git a/main.c b/main.c index 72877e4..5e5a024 100644 --- a/main.c +++ b/main.c @@ -3,7 +3,7 @@ #include "utils.h" #ifndef PACKAGE_VERSION -#define PACKAGE_VERSION "0.7.4-r395-beta" +#define PACKAGE_VERSION "0.7.4-r396-beta" #endif int bwa_fa2pac(int argc, char *argv[]);