Skip to content

Commit f38b110

Browse files
committed
Adjust nimble thresholds
1 parent f56aa0e commit f38b110

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

singlecell/src/org/labkey/singlecell/run/NimbleHelper.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ private void updateNimbleConfigFile(File configFile, NimbleGenome genome) throws
343343
config.put("num_mismatches", 5);
344344
config.put("intersect_level", 0);
345345
config.put("score_threshold", 45);
346-
config.put("score_percent", 0.75);
346+
config.put("score_percent", 0.45);
347347
config.put("score_filter", 25);
348348
//discard_multiple_matches: false
349349
//discard_multi_hits: ?
@@ -353,7 +353,8 @@ else if ("strict".equals(alignTemplate))
353353
{
354354
config.put("num_mismatches", 0);
355355
config.put("intersect_level", 0);
356-
config.put("score_percent", 0.99);
356+
// NOTE: this allows a small amount of mismatched ends:
357+
config.put("score_percent", 0.90);
357358
config.put("score_threshold", 45);
358359
config.put("score_filter", 25);
359360
}

0 commit comments

Comments
 (0)