Skip to content

Commit

Permalink
r146: changed default --outn to 1000
Browse files Browse the repository at this point in the history
It doesn't hurt to have a large default value. Related to #13.
  • Loading branch information
lh3 committed Sep 27, 2022
1 parent 4137611 commit f076cbf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion miniprot.1
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Print unmapped query proteins
Output up to
.RI min{ NUM ,
.BR -N }
alignments per query [100].
alignments per query [1000].
.TP
.BI -K \ NUM
Query batch size [2M]
Expand Down
2 changes: 1 addition & 1 deletion miniprot.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#define MP_VERSION "0.3-r145-dirty"
#define MP_VERSION "0.3-r146-dirty"

#define MP_F_NO_SPLICE 0x1
#define MP_F_NO_ALIGN 0x2
Expand Down
2 changes: 1 addition & 1 deletion options.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void mp_mapopt_init(mp_mapopt_t *mo)
mo->mask_len = INT32_MAX;
mo->pri_ratio = 0.7f;
mo->best_n = 50;
mo->out_n = 100;
mo->out_n = 1000;
mo->kmer2 = 5;

mo->go = 11, mo->ge = 1;
Expand Down

0 comments on commit f076cbf

Please sign in to comment.