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
Copy file name to clipboardExpand all lines: SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/LofreqAnalysis.java
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -125,9 +125,13 @@ public Provider()
125
125
ToolParameterDescriptor.create("minDepth", "Pindel Min Depth To Report", "Only variants representing at least this many reads (based on depth at the start position) will be reported.", "ldk-integerfield", newJSONObject()
126
126
{{
127
127
put("minValue", 0);
128
-
}}, 10)
128
+
}}, 10),
129
+
ToolParameterDescriptor.create("minInsertSize", "Min Insert Size", "Normally this tool will use the value of Picard CollectInsertSizeMetrics as the mean insert size to pass to pindel; however, this value can be used to set a minimum.", "ldk-integerfield", newJSONObject()
Copy file name to clipboardExpand all lines: SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PindelAnalysis.java
+14-13Lines changed: 14 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,10 @@ public Provider()
58
58
{{
59
59
put("minValue", 0);
60
60
}}, 10),
61
+
ToolParameterDescriptor.create("minInsertSize", "Min Insert Size", "Normally this tool will use the value of Picard CollectInsertSizeMetrics as the mean insert size to pass to pindel; however, this value can be used to set a minimum.", "ldk-integerfield", newJSONObject()
62
+
{{
63
+
put("minValue", 0);
64
+
}}, 200),
61
65
ToolParameterDescriptor.create("writeToBamDir", "Write To BAM Dir", "If checked, outputs will be written to the BAM folder, as opposed to the output folder for this job.", "checkbox", newJSONObject(){{
0 commit comments