Skip to content

Commit

Permalink
r164: change default -M to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed May 31, 2014
1 parent 9b2cc28 commit c15fa12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "kseq.h"
KSEQ_INIT(gzFile, gzread)

#define ROPEBWT2_VERSION "r163"
#define ROPEBWT2_VERSION "r164"

static unsigned char seq_nt6_table[128] = {
0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
Expand Down Expand Up @@ -147,7 +147,7 @@ int main_ropebwt2(int argc, char *argv[])
fprintf(stderr, " -r build BWT in RCLO, overriding -s \n");
fprintf(stderr, " -m INT batch size for multi-string indexing; 0 for single-string [10g]\n");
fprintf(stderr, " -P always use a single thread\n");
fprintf(stderr, " -M INT switch to single thread when < INT strings remain in a batch [%d]\n\n", 500);
fprintf(stderr, " -M INT switch to single thread when < INT strings remain in a batch [%d]\n\n", 1000);
fprintf(stderr, " -i FILE read existing index in the FMR format from FILE, overriding -s/-r [null]\n");
fprintf(stderr, " -L input in the one-sequence-per-line format\n");
fprintf(stderr, " -F skip forward strand\n");
Expand Down
2 changes: 1 addition & 1 deletion mrope.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mrope_t *mr_init(int max_nodes, int block_len, int sorting_order)
assert(sorting_order >= 0 && sorting_order <= 2);
r = calloc(1, sizeof(mrope_t));
r->so = sorting_order;
r->thr_min = 100;
r->thr_min = 1000;
for (a = 0; a != 6; ++a)
r->r[a] = rope_init(max_nodes, block_len);
return r;
Expand Down

0 comments on commit c15fa12

Please sign in to comment.