Release minimap2-2.28 (r1209)

This commit is contained in:
Heng Li
2024-03-27 10:57:17 -04:00
parent e3d8c708ac
commit 8170693de3
9 changed files with 45 additions and 13 deletions

View File

@@ -3,7 +3,7 @@ from libc.stdlib cimport free
cimport cmappy
import sys
__version__ = '2.27'
__version__ = '2.28'
cmappy.mm_reset_timer()
@@ -96,6 +96,7 @@ cdef class Alignment:
a = [str(self._q_st), str(self._q_en), strand, self._ctg, str(self._ctg_len), str(self._r_st), str(self._r_en),
str(self._mlen), str(self._blen), str(self._mapq), tp, ts, "cg:Z:" + self.cigar_str]
if self._cs != "": a.append("cs:Z:" + self._cs)
if self._MD != "": a.append("MD:Z:" + self._MD)
return "\t".join(a)
cdef class ThreadBuffer: