Released bwa-0.7.17 (r1188)

This commit is contained in:
Heng Li 2017-10-23 13:10:17 -04:00
parent b582816211
commit 9f26bfcc77
3 changed files with 19 additions and 3 deletions

11
NEWS.md
View File

@ -1,3 +1,14 @@
Release 0.7.17 (23 October 2017)
--------------------------------
This release adds option -q to preserve the mapping quality of split alignment
with a lower alignment score than the primary alignment. Option -5
automatically applies -q as well.
(0.7.17: 23 October 2017, r1188)
Release 0.7.16 (30 July 2017)
-----------------------------

9
bwa.1
View File

@ -1,4 +1,4 @@
.TH bwa 1 "30 July 2017" "bwa-0.7.16-r1180" "Bioinformatics tools"
.TH bwa 1 "23 October 2017" "bwa-0.7.17-r1188" "Bioinformatics tools"
.SH NAME
.PP
bwa - Burrows-Wheeler Alignment Tool
@ -303,9 +303,14 @@ For compatibility with other BWA commands, this option may also be given as
.IR FILE .
[standard ouptut]
.TP
.B -q
Don't reduce the mapping quality of split alignment of lower alignment score.
.TP
.B -5
For split alignment, mark the segment with the smallest coordinate as the
primary. This option may help some Hi-C pipelines. By default, BWA-MEM marks
primary. It automatically applies option
.B -q
as well. This option may help some Hi-C pipelines. By default, BWA-MEM marks
highest scoring segment as primary.
.TP
.B -K \ INT

2
main.c
View File

@ -4,7 +4,7 @@
#include "utils.h"
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "0.7.16a-r1187-dirty"
#define PACKAGE_VERSION "0.7.17-r1188"
#endif
int bwa_fa2pac(int argc, char *argv[]);