r313: release bwa-0.7.0

This commit is contained in:
Heng Li 2013-02-28 15:56:05 -05:00
parent 39fcde9c19
commit c5434ac865
2 changed files with 4 additions and 4 deletions

6
NEWS
View File

@ -9,10 +9,10 @@ longer low-divergence query sequences, BWA-MEM is about twice as fast as BWA
and BWA-SW and is more accurate. It also supports split alignments like BWA-SW
and may optionally output multiple hits like BWA. BWA-MEM does not guarantee
to find hits within a certain edit distance, but BWA is not efficient for such
task given longer reads, either, and the edit-distance criterion is arguably
task given longer reads anyway, and the edit-distance criterion is arguably
not as important in long-read alignment.
In addition to the algorithmic improvements, BWA-SW also implements a few
In addition to the algorithmic improvements, BWA-MEM also implements a few
handy features in practical aspects:
1. BWA-MEM automatically switches between local and glocal (global wrt reads;
@ -47,7 +47,7 @@ for 76bp or longer Illumina reads and long query sequences. The original BWA
short-read algorithm will not deliver satisfactory results for 150bp+ Illumina
reads. Change of mappers will be necessary sooner or later.
(0.7.0 beta: 28 Feburary 2013, r304)
(0.7.0 beta: 28 Feburary 2013, r313)

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.6.2-r311-beta"
#define PACKAGE_VERSION "0.7.0-r313"
#endif
static int usage()