Skip to content

Commit

Permalink
r963: --junc-bonus not working; resolves #513
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Jan 7, 2020
1 parent 3c0d05d commit cdb7857
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "mmpriv.h"
#include "ketopt.h"

#define MM_VERSION "2.17-r962-dirty"
#define MM_VERSION "2.17-r963-dirty"

#ifdef __linux__
#include <sys/resource.h>
Expand Down Expand Up @@ -209,6 +209,7 @@ int main(int argc, char *argv[])
else if (c == 337) opt.max_sw_mat = mm_parse_num(o.arg); // --cap-sw-mat
else if (c == 338) opt.max_qlen = mm_parse_num(o.arg); // --max-qlen
else if (c == 340) junc_bed = o.arg; // --junc-bed
else if (c == 341) opt.junc_bonus = atoi(o.arg); // --junc-bonus
else if (c == 342) opt.flag |= MM_F_SAM_HIT_ONLY; // --sam-hit-only
else if (c == 314) { // --frag
yes_or_no(&opt, MM_F_FRAG_MODE, o.longidx, o.arg, 1);
Expand Down

0 comments on commit cdb7857

Please sign in to comment.