Skip to content

Commit 6f77415

Browse files
committed
Support --score_min for BismarkWrapper
1 parent 5d401c8 commit 6f77415

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

primeseq/src/org/labkey/primeseq/pipeline/BismarkWrapper.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,9 @@ public Provider()
297297
put("minValue", 0);
298298
put("maxValue", 1);
299299
}}, 1),
300+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--score_min"), "score_min", "Score Min", "Sets a function governing the minimum alignment score needed for an alignment to be considered \"valid\" (i.e. good enough to report). This is a function of read length. For instance, specifying L,0,-0.2 sets the minimum-score function f to f(x) = 0 + -0.2 * x, where x is the read length", "textfield", new JSONObject(){{
301+
302+
}}, null),
300303
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.createSwitch("--local"), "local", "Local Alignment", "In this mode, it is not required that the entire read aligns from one end to the other. Rather, some characters may be omitted (“soft-clipped”) from the ends in order to achieve the greatest possible alignment score. For Bowtie 2, the match bonus --ma (default: 2) is used in this mode, and the best possible alignment score is equal to the match bonus (--ma) times the length of the read. This is mutually exclusive with end-to-end alignments.", "checkbox", new JSONObject(){{
301304

302305
}}, false),

0 commit comments

Comments
 (0)