Release bwa-0.7.6a-r433

This commit is contained in:
Heng Li 2014-01-31 12:58:21 -05:00
parent 5fdab3ae13
commit 7c50bad567
2 changed files with 4 additions and 3 deletions

5
bwa.c
View File

@ -128,8 +128,9 @@ uint32_t *bwa_gen_cigar(const int8_t mat[25], int q, int r, int w_, int64_t l_pa
int k, x, y, u, n_mm = 0, n_gap = 0;
str.l = str.m = *n_cigar * 4; str.s = (char*)cigar; // append MD to CIGAR
for (k = 0, x = y = u = 0; k < *n_cigar; ++k) {
int op = cigar[k]&0xf;
int len = cigar[k]>>4;
int op, len;
cigar = (uint32_t*)str.s;
op = cigar[k]&0xf, len = cigar[k]>>4;
if (op == 0) { // match
for (i = 0; i < len; ++i) {
if (query[x + i] != rseq[y + i]) {

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.6-r432"
#define PACKAGE_VERSION "0.7.6a-r433"
#endif
int bwa_fa2pac(int argc, char *argv[]);