Skip to content

Commit

Permalink
r1114: retain more candidate inversion alignments
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Nov 19, 2021
1 parent b276772 commit a8f1fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hit.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ int mm_filter_strand_retained(int n_regs, mm_reg1_t *r)
int i, k;
for (i = k = 0; i < n_regs; ++i) {
int p = r[i].parent;
if (!r[i].strand_retained || r[i].div < r[p].div * 5.0f) {
if (!r[i].strand_retained || r[i].div < r[p].div * 5.0f || r[i].div < 0.01f) {
if (k < i) r[k++] = r[i];
else ++k;
}
Expand Down
2 changes: 1 addition & 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.23-r1112-dirty"
#define MM_VERSION "2.23-r1114-dirty"

#ifdef __linux__
#include <sys/resource.h>
Expand Down

0 comments on commit a8f1fa8

Please sign in to comment.