Skip to content

Commit 1e79aa1

Browse files
committed
Minor improvements to seurat steps
1 parent e8d55b2 commit 1e79aa1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ 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 barcodePrefix. If blank, each object will be treated as one unit of data.", "textfield", new JSONObject(){{
27-
put("allowBlank", false);
27+
2828
}}, null),
2929
SeuratToolParameter.create("seed", "Random Seed", "This random seed, used for downsampling", "ldk-integerfield", new JSONObject(){{
3030

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ public Provider()
3333
put("height", 150);
3434
put("delimiter", ",");
3535
}}, null),
36+
SeuratToolParameter.create("featuresToRegress", "Features to Regress", "These features, entered comma-separated or one/line, will be passed to Seurat::ScaleData vars.to.regress", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
37+
put("height", 150);
38+
put("delimiter", ",");
39+
}}, "nCount_RNA,p.mito"),
3640
SeuratToolParameter.create("scaleVariableFeaturesOnly", "ScaleData On Variable Features Only", "If checked, ScaleData will only be performed on VariableFeatures, which should dramatically reduce time and memory", "checkbox", new JSONObject(){{
3741
put("checked", true);
3842
}}, true),

0 commit comments

Comments
 (0)