From 090361c25b3246fcbd94f2a305e73da258e99c22 Mon Sep 17 00:00:00 2001 From: Heng Li Date: Fri, 16 Feb 2018 21:10:57 -0500 Subject: [PATCH] fixed a typo in mappy (#117) --- python/mappy.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mappy.pyx b/python/mappy.pyx index 6b0e753..711e49f 100644 --- a/python/mappy.pyx +++ b/python/mappy.pyx @@ -111,7 +111,7 @@ cdef class Aligner: if min_chain_score is not None: self.map_opt.min_chain_score = min_chain_score if min_dp_score is not None: self.map_opt.min_dp_max = min_dp_score if bw is not None: self.map_opt.bw = bw - if best_n is not None: self.best_n = best_n + if best_n is not None: self.map_opt.best_n = best_n cdef cmappy.mm_idx_reader_t *r; if fn_idx_out is None: