You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ToolParameterDescriptor.create(DESIGN_PRIMERS, "Design Primers", "If selected, Primer3 will be used to design primers to flank integration sites", "checkbox", newJSONObject(){{
74
76
put("checked", true);
75
-
}}, true)
77
+
}}, true),
78
+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--reads-to-output"), "readsToOutput", "Reads To Output Per Site", "If this is non-zero, up to this many reads per integration site will be written to a FASTA file. This can serve as a way to verify the actual junction border.", "ldk-integerfield", newJSONObject(){{
79
+
put("minValue", 0);
80
+
}}, 25),
81
+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("-mf"), "minFraction", "Min Faction To Output", "Only sites with at least this fraction of reads will be output.", "ldk-integerfield", newJSONObject(){{
82
+
put("minValue", 0);
83
+
}}, 0),
84
+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("-ma"), "minAlignment", "Min Alignments To Output", "Only sites with at least this many alignments will be output.", "ldk-integerfield", newJSONObject(){{
0 commit comments