You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @param maskLen The distance between the optimal and suboptimal alignment ending position will >= maskLen. We suggest to
135
135
// use readLen/2, if you don't have special concerns. Note: maskLen has to be >= 15, otherwise this function
136
136
// will NOT return the suboptimal alignment information.
137
-
// @return True: succeed; false: fail.
137
+
// @return If the alignment path is accurate (or has missing part). 0: accurate; 1: banded_sw is totally failed; 2: banded_sw returned path has missing part
// @function Align the query againt the reference.
@@ -151,9 +151,9 @@ class Aligner {
151
151
// @param maskLen The distance between the optimal and suboptimal alignment ending position will >= maskLen. We suggest to
152
152
// use readLen/2, if you don't have special concerns. Note: maskLen has to be >= 15, otherwise this function
153
153
// will NOT return the suboptimal alignment information.
154
-
// @return True: succeed; false: fail.
154
+
// @return If the alignment path is accurate (or has missing part). 0: accurate; 1: banded_sw is totally failed; 2: banded_sw returned path has missing part
0 commit comments