Skip to content

Commit cce7050

Browse files
committed
Support more arguments for SplitVcfBySamples
1 parent f4044d1 commit cce7050

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/variant/SplitVcfBySamplesStep.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ public Provider()
3636
{
3737
super("SplitVcfBySamples", "Split VCF By Sample", "DISCVRseq", "A VCF will be generated containing only the samples specified below.", Arrays.asList(
3838
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--samplesPerVcf"), "samplesPerVcf", "Samples Per VCF", "The max number of samples to write per VCF", "ldk-integerfield", null, null),
39-
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--minAllowableInFinalVcf"), "minAllowableInFinalVcf", "Min Allowable in Final VCF", "If the final VCF in the split has fewer than this number of samples, it will be merged with the second to last VCF", "ldk-integerfield", null, null)
39+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("--minAllowableInFinalVcf"), "minAllowableInFinalVcf", "Min Allowable in Final VCF", "If the final VCF in the split has fewer than this number of samples, it will be merged with the second to last VCF", "ldk-integerfield", null, null),
40+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.createSwitch("--discardNonVariantSites"), "discardNonVariantSites", "Discard Non-Variant Sites", "If selected, any site in a subset VCF lacking at least one genotype with a variant will be discarded", "checkbox", null, true)
4041
), null, null);
4142
}
4243

0 commit comments

Comments
 (0)