Skip to content

Commit 3638f05

Browse files
committed
Use consistent delimiter for seurat-related fields
1 parent cb635e2 commit 3638f05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/src/org/labkey/singlecell/pipeline/singlecell/Downsample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ public Provider()
2424
put("allowBlank", false);
2525
}}, null),
2626
SeuratToolParameter.create("subsetFields", "Additional Grouping Fields", "A comma-separated list of fields that will be used to subset data within each seurat object. For example, if 'BarcodePrefix' is provided and 500 target cells is selected, each incoming seurat object will be subset to no more than 500 cells per unique value of BarcodePrefix. If blank, each object will be treated as one unit of data.", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
27-
put("delimiter", ";");
27+
put("height", 150);
28+
put("delimiter", ",");
2829
}}, null, "subsetFields", true, true),
2930
SeuratToolParameter.create("seed", "Random Seed", "This random seed, used for downsampling", "ldk-integerfield", new JSONObject(){{
3031

3132
}}, 1234)
3233
), Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);
3334
}
3435

35-
3636
@Override
3737
public Downsample create(PipelineContext ctx)
3838
{

0 commit comments

Comments
 (0)