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
@@ -18,8 +20,21 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
18
20
publicProvider()
19
21
{
20
22
super("ApplyKnownClonotypicData", "Append Known Clonotype/Antigen Data", "RDiscvr", "This will query the clone_responses table and append a column tagging each cell for matching antigens (based on clonotype)", List.of(
21
-
22
-
), null, null);
23
+
SeuratToolParameter.create("antigenInclusionList", "Antigen(s) to Include", "Enter antigens, per line. Only stims using these antigens will be used", "sequenceanalysis-trimmingtextarea", newJSONObject()
24
+
{{
25
+
put("allowBlank", false);
26
+
put("height", 150);
27
+
put("delimiter", ",");
28
+
put("stripCharsRe", "/['\"]/g");
29
+
}}, null, null, true, true).delimiter(","),
30
+
SeuratToolParameter.create("antigenExclusionList", "Antigen(s) to Exclude", "Enter antigens, per line. Stims using these antigens will be excluded", "sequenceanalysis-trimmingtextarea", newJSONObject()
0 commit comments