Skip to content

Commit ce1cb10

Browse files
committed
Update SDA defaults
1 parent 7dc1462 commit ce1cb10

File tree

1 file changed

+3
-3
lines changed
  • singlecell/src/org/labkey/singlecell/pipeline/singlecell

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ public Provider()
4545
}}, null).delimiter(","),
4646
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", new JSONObject(){{
4747
put("minValue", 0);
48-
}}, 5, "minFeatureCount", false),
48+
}}, 1, "minFeatureCount", false),
4949
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 zero it is interpreted as a percentage of total cells. If above zero it is interpeted as the min number of cells", "ldk-numberfield", new JSONObject(){{
5050
put("minValue", 0);
5151
put("decimalPrecision", 2);
52-
}}, 0.5, "minCellsExpressingFeature", false),
52+
}}, 0.02, "minCellsExpressingFeature", false),
5353
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", new JSONObject(){{
5454
put("minValue", 0);
55-
}}, 0, "perCellExpressionThreshold", false),
55+
}}, 5, "perCellExpressionThreshold", false),
5656
SeuratToolParameter.create("minLibrarySize", "Min Library Size", "Passed to dropsim::normaliseDGE() min_library_size", "ldk-integerfield", new JSONObject(){{
5757
put("minValue", 0);
5858
}}, 50),

0 commit comments

Comments
 (0)