r937: enlarge mm_mapopt_t::flag to 64 bits
This commit is contained in:
parent
189555503a
commit
97f67a2a0a
2
main.c
2
main.c
|
|
@ -6,7 +6,7 @@
|
|||
#include "mmpriv.h"
|
||||
#include "ketopt.h"
|
||||
|
||||
#define MM_VERSION "2.16-r935-dirty"
|
||||
#define MM_VERSION "2.16-r937-dirty"
|
||||
|
||||
#ifdef __linux__
|
||||
#include <sys/resource.h>
|
||||
|
|
|
|||
|
|
@ -104,9 +104,9 @@ typedef struct {
|
|||
} mm_idxopt_t;
|
||||
|
||||
typedef struct {
|
||||
int64_t flag; // see MM_F_* macros
|
||||
int seed;
|
||||
int sdust_thres; // score threshold for SDUST; 0 to disable
|
||||
int flag; // see MM_F_* macros
|
||||
|
||||
int max_qlen; // max query length
|
||||
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@ cdef extern from "minimap.h":
|
|||
uint64_t batch_size
|
||||
|
||||
ctypedef struct mm_mapopt_t:
|
||||
int64_t flag
|
||||
int seed
|
||||
int sdust_thres
|
||||
int flag
|
||||
int max_qlen
|
||||
int bw
|
||||
int max_gap, max_gap_ref
|
||||
|
|
|
|||
Loading…
Reference in New Issue