We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb630de commit eb819c2Copy full SHA for eb819c2
NEWS.md
@@ -1,3 +1,35 @@
1
+Release 2.6-r623 (12 December 2017)
2
+-----------------------------------
3
+
4
+This release adds several features and fixes two minor bugs:
5
6
+ * Optionally build an index without sequences. This helps to reduce the
7
+ peak memory for read overlapping and is automatically applied when
8
+ base-level alignment is not requested.
9
10
+ * Approximately estimate per-base sequence divergence (i.e. 1-identity)
11
+ without performing base-level alignment, using a MashMap-like method. The
12
+ estimate is written to a new dv:f tag.
13
14
+ * Reduced the number of tiny terminal exons in RNA-seq alignment. The current
15
+ setting is conservative. Increase --end-seed-pen to drop more such exons.
16
17
+ * Reduced the peak memory when aligning long query sequences.
18
19
+ * Fixed a bug that is caused by HPC minimizers longer than 256bp. This should
20
+ have no effect in practice, but it is recommended to rebuild HPC indices if
21
+ possible.
22
23
+ * Fixed a bug when identifying identical hits (#71). This should only affect
24
+ artifactual reference consisting of near identical sequences.
25
26
+For genomic sequences, minimap2 should give nearly identical alignments to
27
+v2.5, except the new dv:f tag.
28
29
+(2.6: 12 December 2017, r623)
30
31
32
33
Release 2.5-r572 (11 November 2017)
34
-----------------------------------
35
README.md
@@ -1,4 +1,4 @@
-[](https://github.com/lh3/minimap2/releases)
+[](https://github.com/lh3/minimap2/releases)
[](https://anaconda.org/bioconda/minimap2)
[](https://pypi.python.org/pypi/mappy)
[](https://travis-ci.org/lh3/minimap2)
@@ -68,9 +68,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
68
Minimap2 only works on x86-64 CPUs. You can acquire precompiled binaries from
69
the [release page][release] with:
70
```sh
71
-curl -L https://github.com/lh3/minimap2/releases/download/v2.5/minimap2-2.5_x64-linux.tar.bz2 \
+curl -L https://github.com/lh3/minimap2/releases/download/v2.6/minimap2-2.6_x64-linux.tar.bz2 \
72
| tar -jxvf -
73
-./minimap2-2.5_x64-linux/minimap2
+./minimap2-2.6_x64-linux/minimap2
74
```
75
If you want to compile from the source, you need to have a C compiler, GNU make
76
and zlib development files installed. Then type `make` in the source code
main.c
@@ -6,7 +6,7 @@
#include "mmpriv.h"
#include "getopt.h"
-#define MM_VERSION "2.5-r622-dirty"
+#define MM_VERSION "2.6-r623"
#ifdef __linux__
#include <sys/resource.h>
minimap2.1
-.TH minimap2 1 "8 December 2017" "minimap2-2.5-dirty (r611)" "Bioinformatics tools"
+.TH minimap2 1 "12 December 2017" "minimap2-2.6 (r623)" "Bioinformatics tools"
.SH NAME
.PP
minimap2 - mapping and alignment between collections of DNA sequences
python/cmappy.pxd
@@ -30,6 +30,7 @@ cdef extern from "minimap.h":
int end_bonus
int min_dp_max
int min_ksw_len
+ int anchor_ext_len, anchor_ext_shift
int pe_ori, pe_bonus
float mid_occ_frac
36
int32_t mid_occ
setup.py
@@ -23,7 +23,7 @@ def readme():
setup(
name = 'mappy',
- version = '2.5',
+ version = '2.6',
url = 'https://github.com/lh3/minimap2',
description = 'Minimap2 python binding',
long_description = readme(),
@@ -35,7 +35,7 @@ def readme():
ext_modules = [Extension('mappy',
sources = [module_src, 'align.c', 'bseq.c', 'chain.c', 'format.c', 'hit.c', 'index.c', 'pe.c',
37
'ksw2_extd2_sse.c', 'ksw2_exts2_sse.c', 'ksw2_extz2_sse.c', 'ksw2_ll_sse.c',
38
- 'kalloc.c', 'kthread.c', 'map.c', 'misc.c', 'sdust.c', 'sketch.c'],
+ 'kalloc.c', 'kthread.c', 'map.c', 'misc.c', 'sdust.c', 'sketch.c', 'esterr.c'],
39
depends = ['minimap.h', 'bseq.h', 'kalloc.h', 'kdq.h', 'khash.h', 'kseq.h', 'ksort.h',
40
'ksw2.h', 'kthread.h', 'kvec.h', 'mmpriv.h', 'sdust.h',
41
'python/cmappy.h', 'python/cmappy.pxd'],
0 commit comments