Skip to content

Commit 0e1758e

Browse files
committed
Update SDA defaults
1 parent dfd4681 commit 0e1758e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/SequenceAnalysisMaintenanceTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ private void processContainer(Container c, Logger log) throws IOException, Pipel
309309
if (!gz.exists())
310310
{
311311
ReferenceGenomeImpl genome = new ReferenceGenomeImpl(fasta, fastaData, libraryId, null);
312-
log.error("GZipped genome missing for: " + genome.getName());
312+
log.error("GZipped genome missing for: " + genome.getGenomeId());
313313

314314
if (SystemUtils.IS_OS_WINDOWS)
315315
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ public Provider()
4848
put("delimiter", ",");
4949
put("stripCharsRe", "/(^['\"]+)|(['\"]+$)/g");
5050
}}, 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", new JSONObject(){{
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", new JSONObject(){{
5252
put("minValue", 0);
5353
}}, 1, "minFeatureCount", false),
5454
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", new JSONObject(){{
5555
put("minValue", 0);
5656
put("decimalPrecision", 2);
57-
}}, 0.02, "minCellsExpressingFeature", false),
57+
}}, 0, "minCellsExpressingFeature", false),
5858
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(){{
5959
put("minValue", 0);
6060
}}, 0, "perCellExpressionThreshold", false),

0 commit comments

Comments
 (0)