dev-474: fixed a typo

This commit is contained in:
Heng Li 2014-04-10 21:04:02 -04:00
parent f02cd42679
commit e80bccc923
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ void mem_reg2ovlp(const mem_opt_t *opt, const bntseq_t *bns, const uint8_t *pac,
int64_t pos, rb = p->rb, re = p->re;
pos = bns_depos(bns, rb < bns->l_pac? rb : re - 1, &is_rev);
rid = bns_pos2rid(bns, pos);
assert(rid == a->rid);
assert(rid == p->rid);
pos -= bns->anns[rid].offset;
kputs(s->name, &str); kputc('\t', &str);
kputw(s->l_seq, &str); kputc('\t', &str);

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.8+dev-r473"
#define PACKAGE_VERSION "0.7.8+dev-r474"
#endif
int bwa_fa2pac(int argc, char *argv[]);