Skip to content

Commit

Permalink
Add values for AS_MAX_READLEN_BITS 23 and 24. Issue marbl#478.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed May 9, 2017
1 parent 1e76077 commit 5deaa3e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/overlapInCore/liboverlap/Binomial_Bound.C
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,14 @@ Initialize_Match_Limit(int32 *ml, double maxErate, int32 maxErrors) {
double sl = 0.986446300363063 / maxErate + 0.052358358862826;
#endif

#if AS_MAX_READLEN_BITS == 23
double sl = 0.989923769842693 / maxErate + 0.0395372203695468;
#endif

#if AS_MAX_READLEN_BITS == 24
double sl = 0.992440299290478 / maxErate + 0.036791522317757;
#endif

// And the first value.
double vl = ml[e-1] + sl;

Expand Down

0 comments on commit 5deaa3e

Please sign in to comment.