r968: allow large mini_batch; resolves #491

This commit is contained in:
Heng Li
2020-01-18 12:24:44 -05:00
parent 24f50f38e8
commit d2e14705e7
6 changed files with 19 additions and 17 deletions

3
map.c
View File

@@ -399,7 +399,8 @@ mm_reg1_t *mm_map(const mm_idx_t *mi, int qlen, const char *seq, int *n_regs, mm
**************************/
typedef struct {
int mini_batch_size, n_processed, n_threads, n_fp;
int n_processed, n_threads, n_fp;
int64_t mini_batch_size;
const mm_mapopt_t *opt;
mm_bseq_file_t **fp;
const mm_idx_t *mi;