Skip to content

Commit

Permalink
r973: fixed compiling errors caused
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Jan 21, 2020
1 parent 9dceae5 commit a7a01fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion align.c
Expand Up @@ -908,6 +908,6 @@ mm_reg1_t *mm_align_skeleton(void *km, const mm_mapopt_t *opt, const mm_idx_t *m
kfree(km, qseq0[0]);
kfree(km, ez.cigar);
mm_filter_regs(opt, qlen, n_regs_, regs);
mm_hit_sort(km, n_regs_, regs, opt->alt_diff_frac);
mm_hit_sort(km, n_regs_, regs, opt->alt_drop);
return regs;
}
2 changes: 1 addition & 1 deletion main.c
Expand Up @@ -7,7 +7,7 @@
#include "mmpriv.h"
#include "ketopt.h"

#define MM_VERSION "2.17-r972-dirty"
#define MM_VERSION "2.17-r973-dirty"

#ifdef __linux__
#include <sys/resource.h>
Expand Down
2 changes: 1 addition & 1 deletion options.c
Expand Up @@ -35,7 +35,7 @@ void mm_mapopt_init(mm_mapopt_t *opt)
opt->min_join_flank_sc = 1000;
opt->min_join_flank_ratio = 0.5f;

opt->alt_diff_frac = 0.15f;
opt->alt_drop = 0.15f;

opt->a = 2, opt->b = 4, opt->q = 4, opt->e = 2, opt->q2 = 24, opt->e2 = 1;
opt->sc_ambi = 1;
Expand Down

0 comments on commit a7a01fe

Please sign in to comment.