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
@@ -19,10 +19,15 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
19
19
{
20
20
publicProvider()
21
21
{
22
-
super("AvgExpression", "Avg. Expression", "Seurat", "This will run AverageExpression on the raw counts, producing a matrix with the average per group. This matrix will have a row labeled TotalCells appended, which is the total cells per group.", Arrays.asList(
23
-
SeuratToolParameter.create("groupField", "Grouping Field", "This field will be used to group cells of the seurat object. For each unique value of this field, count averages will be computed and saved into a matrix with one column per group. Any cells lacking a value in this field will be discarded.", "textfield", newJSONObject(){{
22
+
super("AvgExpression", "Avg. Expression", "Seurat", "This will run AverageExpression on the raw counts, grouping using the provided fields. It will generate a seurat object with aggregate counts.", Arrays.asList(
23
+
SeuratToolParameter.create("groupFields", "Grouping Field(s)", "This field will be used to group cells of the seurat object. For each unique value of this field, count averages will be computed and saved into a matrix with one column per group. Any cells lacking a value in this field will be discarded.", "textfield", newJSONObject(){{
24
24
put("allowBlank", false);
25
-
}}, null)
25
+
put("height", 150);
26
+
put("delimiter", ",");
27
+
}}, null).delimiter(","),
28
+
SeuratToolParameter.create("addMetadata", "Query Metadata?", "If checked, Rdiscvr::QueryAndApplyMetadataUsingCDNA will be run after aggregation. This requires a cDNA_ID column to exist.", "checkbox", newJSONObject(){{
0 commit comments