Skip to content

Commit 53ce317

Browse files
committed
Release minimap2-2.8 (r672)
1 parent da6947c commit 53ce317

File tree

5 files changed

+34
-9
lines changed

5 files changed

+34
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ ksw2_exts2_neon.o:ksw2_exts2_sse.c ksw2.h kalloc.h
7777
# other non-file targets
7878

7979
clean:
80-
rm -fr gmon.out *.o a.out $(PROG) $(PROG_EXTRA) *~ *.a *.dSYM build dist mappy.so mappy.c python/mappy.c mappy.egg*
80+
rm -fr gmon.out *.o a.out $(PROG) $(PROG_EXTRA) *~ *.a *.dSYM build dist mappy*.so mappy.c python/mappy.c mappy.egg*
8181

8282
depend:
8383
(LC_ALL=C; export LC_ALL; makedepend -Y -- $(CFLAGS) $(CPPFLAGS) -- *.c)

NEWS.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
Release 2.8-r672 (1 February 2018)
2+
----------------------------------
3+
4+
Notable changes in this release include:
5+
6+
* Speed up short-read alignment by ~10%. The overall mapping accuracy stays
7+
the same, but the output alignments are not always identical to v2.7 due to
8+
unstable sorting employed during chaining. Long-read alignment is not
9+
affected by this change as the speedup is short-read specific.
10+
11+
* Mappy now supports paired-end short-read alignment (#87). Please see
12+
python/README.rst for details.
13+
14+
* Added option --for-only and --rev-only to perform alignment against the
15+
forward or the reverse strand of the reference genome only (#91).
16+
17+
* Alleviated the issue with undesired diagonal alignment in the self mapping
18+
mode (#10). Even if the output is not ideal, it should not interfere with
19+
other alignments. Fully resolving the issue is intricate and may require
20+
additional heuristic thresholds.
21+
22+
* Enhanced error checking against incorrect input (#92 and #96).
23+
24+
For long query sequences, minimap2 should output identical alignments to v2.7.
25+
26+
(2.8: 1 February 2018, r672)
27+
28+
29+
130
Release 2.7-r654 (9 January 2018)
231
---------------------------------
332

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
6868
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
6969
the [release page][release] with:
7070
```sh
71-
curl -L https://github.com/lh3/minimap2/releases/download/v2.7/minimap2-2.7_x64-linux.tar.bz2 \
71+
curl -L https://github.com/lh3/minimap2/releases/download/v2.8/minimap2-2.8_x64-linux.tar.bz2 \
7272
| tar -jxvf -
73-
./minimap2-2.7_x64-linux/minimap2
73+
./minimap2-2.8_x64-linux/minimap2
7474
```
7575
If you want to compile from the source, you need to have a C compiler, GNU make
7676
and zlib development files installed. Then type `make` in the source code
@@ -359,10 +359,6 @@ mappy` or [from BioConda][mappyconda] via `conda install -c bioconda mappy`.
359359
possible to add non-SIMD support, but it would make minimap2 slower by
360360
several times.
361361

362-
In general, minimap2 is a young project with most code written since June, 2017.
363-
It may have bugs and room for improvements. Bug reports and suggestions are
364-
warmly welcomed.
365-
366362

367363

368364
[paf]: https://github.com/lh3/miniasm/blob/master/PAF.md

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "mmpriv.h"
77
#include "getopt.h"
88

9-
#define MM_VERSION "2.7-r671-dirty"
9+
#define MM_VERSION "2.8-r672"
1010

1111
#ifdef __linux__
1212
#include <sys/resource.h>

minimap2.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH minimap2 1 "31 January 2018" "minimap2-2.8-dirty (r671)" "Bioinformatics tools"
1+
.TH minimap2 1 "1 February 2018" "minimap2-2.8 (r672)" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
minimap2 - mapping and alignment between collections of DNA sequences

0 commit comments

Comments
 (0)