r126: release bwa-0.6.2

This commit is contained in:
Heng Li 2012-06-19 13:29:44 -04:00
parent 29ed2d8287
commit 09ee115dcc
3 changed files with 21 additions and 2 deletions

19
NEWS
View File

@ -1,3 +1,22 @@
Release 0.6.2 (19 June, 2012)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This is largely a bug-fix release. Notable changes in BWA-short and BWA-SW:
* Bugfix: BWA-SW may give bad alignments due to incorrect band width.
* Bugfix: A segmentation fault due to an out-of-boundary error. The fix is a
temporary solution. The real cause has not been identified.
* Attempt to read index from prefix.64.bwt, such that the 32-bit and 64-bit
index can coexist.
* Added options '-I' and '-S' to control BWA-SW pairing.
(0.6.2: 19 June 2012, r126)
Release 0.6.1 (28 November, 2011)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2
bwa.1
View File

@ -1,4 +1,4 @@
.TH bwa 1 "28 November 2011" "bwa-0.6.1" "Bioinformatics tools"
.TH bwa 1 "19 June 2012" "bwa-0.6.2" "Bioinformatics tools"
.SH NAME
.PP
bwa - Burrows-Wheeler Alignment Tool

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.6.1-r125"
#define PACKAGE_VERSION "0.6.2-r126"
#endif
static int usage()