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/variant/PlinkPcaStep.java
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,15 @@ public Provider()
67
67
put("checked", true);
68
68
}}, true),
69
69
ToolParameterDescriptor.create("splitByApplication", "Split by Application", "If checked, one iteration of PCA will be performed for each application (defined by the readset).", "checkbox", null, false),
70
+
ToolParameterDescriptor.create("allowableApplications", "Allowable Applications", "If Split By Application is used, then it will search readsets to find those where the VCF sample matches the readset name. This is an option extra filter that can be added, to limit to search to a specific set of applications.", "ldk-simplelabkeycombo", newJSONObject(){{
71
+
put("schemaName", "sequenceanalysis");
72
+
put("queryName", "sequence_applications");
73
+
put("multiSelect", true);
74
+
put("joinReturnValue", true);
75
+
put("displayField", "application");
76
+
put("valueField", "application");
77
+
put("sortField", "application");
78
+
}}, null),
70
79
ToolParameterDescriptor.create(SelectSamplesStep.SAMPLE_INCLUDE, "Sample(s) Include", "Only the following samples will be included in the analysis.", "sequenceanalysis-trimmingtextarea", null, null),
71
80
ToolParameterDescriptor.create(SelectSamplesStep.SAMPLE_EXCLUDE, "Samples(s) To Exclude", "The following samples will be excluded from the analysis.", "sequenceanalysis-trimmingtextarea", null, null)
0 commit comments