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
@@ -15,7 +19,23 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
15
19
{
16
20
publicProvider()
17
21
{
18
-
super("PerformDefaultNimbleAppend", "Default Nimble Append", "RDiscvr", "This uses Rdiscvr to run the default nimble append, adding MHC, KIR, NKG, Viral and Ig data", null, null, null);
22
+
super("PerformDefaultNimbleAppend", "Default Nimble Append", "RDiscvr", "This uses Rdiscvr to run the default nimble append, adding MHC, KIR, NKG, Viral and Ig data", Arrays.asList(
23
+
SeuratToolParameter.create("appendMHC", "Append MHC", "If true, MHC data will be appended", "checkbox", newJSONObject(){{
24
+
put("checked", true);
25
+
}}, true),
26
+
SeuratToolParameter.create("appendKIR", "Append KIR", "If true, KIR data will be appended", "checkbox", newJSONObject(){{
27
+
put("checked", true);
28
+
}}, true),
29
+
SeuratToolParameter.create("appendNKG", "Append NKG2", "If true, NKG2 data will be appended", "checkbox", newJSONObject(){{
30
+
put("checked", true);
31
+
}}, true),
32
+
SeuratToolParameter.create("appendIG", "Append Ig", "If true, immunoglobulin data will be appended", "checkbox", newJSONObject(){{
33
+
put("checked", true);
34
+
}}, true),
35
+
SeuratToolParameter.create("appendViral", "Append Viral", "If true, viral data will be appended", "checkbox", newJSONObject(){{
0 commit comments