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
Copy file name to clipboardExpand all lines: singlecell/src/org/labkey/singlecell/pipeline/singlecell/RunSDA.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -48,13 +48,13 @@ public Provider()
48
48
put("delimiter", ",");
49
49
put("stripCharsRe", "/(^['\"]+)|(['\"]+$)/g");
50
50
}}, null).delimiter(","),
51
-
SeuratToolParameter.create("minFeatureCount", "Min Feature Count", "This is used to filter genes. Only features with total expression across all cells above this value are included. The default of 5 is designed to include effectively all but the most lowly expressed genes", "ldk-integerfield", newJSONObject(){{
51
+
SeuratToolParameter.create("minFeatureCount", "Min Feature Count", "This is used to filter genes. Only features with total expression across all cells greater than or equal to this value are included. The default of 1 will include all expressed genes.", "ldk-integerfield", newJSONObject(){{
52
52
put("minValue", 0);
53
53
}}, 1, "minFeatureCount", false),
54
54
SeuratToolParameter.create("minCellsExpressingFeature", "Min Cells Expressing Feature", "Can be used with perCellExpressionThreshold to drop features present in limited cells. Only features detected above perCellExpressionThreshold in at least minCellsExpressingFeature will be retained. If this value is less than one, it is interpreted as a percentage of total cells. If above one, it is interpreted as the min number of cells", "ldk-numberfield", newJSONObject(){{
55
55
put("minValue", 0);
56
56
put("decimalPrecision", 2);
57
-
}}, 0.02, "minCellsExpressingFeature", false),
57
+
}}, 0, "minCellsExpressingFeature", false),
58
58
SeuratToolParameter.create("perCellExpressionThreshold", "Per Cell Expression Threshold", "Can be used with perCellExpressionThreshold to drop features present in limited cells. Only features detected above perCellExpressionThreshold in at least minCellsExpressingFeature will be retained", "ldk-integerfield", newJSONObject(){{
0 commit comments