r396: er... the new tag is named SA not SP

This commit is contained in:
Heng Li 2013-05-23 12:48:18 -04:00
parent 3d2450ed97
commit bde5005f39
2 changed files with 2 additions and 2 deletions

View File

@ -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;

2
main.c
View File

@ -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[]);