Released bwa-0.7.7-r441

This commit is contained in:
Heng Li 2014-02-25 01:05:37 -05:00
parent e879817373
commit 1c19bc630f
3 changed files with 19 additions and 2 deletions

17
NEWS
View File

@ -1,3 +1,20 @@
Release 0.7.7 (25 Feburary, 2014)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This release fixes incorrect MD tags in the BWA-MEM output.
A note about short-read mapping to GRCh38. The new human reference genome
GRCh38 contains 60Mbp program generated alpha repeat arrays, some of which are
hard masked as they cannot be localized. These highly repetitive arrays make
BWA-MEM ~50% slower. If you are concerned with the performance of BWA-MEM, you
may consider to use option "-c2000 -m50". On simulated data, this setting helps
the performance at a very minor cost on accuracy. I may consider to change the
default in future releases.
(0.7.7: 25 Feburary 2014, r441)
Release 0.7.6 (31 Januaray, 2014)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2
bwa.1
View File

@ -1,4 +1,4 @@
.TH bwa 1 "31 January 2014" "bwa-0.7.6" "Bioinformatics tools"
.TH bwa 1 "25 Feburary 2014" "bwa-0.7.7" "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.7.6a+dev-r440"
#define PACKAGE_VERSION "0.7.7-r441"
#endif
int bwa_fa2pac(int argc, char *argv[]);