Released 0.7.10

This commit is contained in:
Heng Li 2014-07-13 22:57:27 -04:00
parent 7fd6a11569
commit 705aa53894
2 changed files with 20 additions and 1 deletions

19
NEWS.md
View File

@ -1,3 +1,22 @@
Release 0.7.10 (13 July, 2014)
------------------------------
Notable changes to BWA-MEM:
* Fixed a segmentation fault due to an alignment bridging the forward-reverse
boundary. This is a bug.
* Use the PacBio heuristic to map contigs to the reference genome. The old
heuristic evaluates the necessity of full extension for each chain. This may
not work in long low-complexity regions. The PacBio heuristic performs
SSE2-SW around each short seed. It works better. Note that the heuristic is
only applied to long query sequences. For Illumina reads, the output is
identical to the previous version.
(0.7.10: 13 July 2014, r789)
Release 0.7.9 (19 May, 2014)
----------------------------

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.9a-r788-dirty"
#define PACKAGE_VERSION "0.7.10-r789"
#endif
int bwa_fa2pac(int argc, char *argv[]);