Skip to content

Commit 1c67200

Browse files
committed
Support --ccs option for pbsv call
1 parent 117f09d commit 1c67200

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PbsvJointCallingHandler.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ public PbsvJointCallingHandler()
7171
ToolParameterDescriptor.create("doCopyLocal", "Copy Inputs Locally", "If checked, the input file(s) will be copied to the job working directory.", "checkbox", new JSONObject(){{
7272
put("checked", true);
7373
}}, true),
74+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.createSwitch("--ccs"), "useCCS", "Use CCS", "If checked, the --ccs option is added to pbsv call.", "checkbox", new JSONObject(){{
75+
put("checked", false);
76+
}}, false),
7477
ToolParameterDescriptor.create("doSplitJobs", "Split Jobs", "If checked, this will submit one job per input, instead of one merged job. This can be useful for processing large batches", "checkbox", null, false),
7578
ToolParameterDescriptor.create("scatterGather", "Scatter/Gather Options", "If selected, this job will be divided to run job per chromosome. The final step will take the VCF from each intermediate step and combined to make a final VCF file.", "sequenceanalysis-variantscattergatherpanel", null, null)
7679
));

0 commit comments

Comments
 (0)