Skip to content

Commit 94c4345

Browse files
committed
Fix typo; set defaults
1 parent 7b0b1f6 commit 94c4345

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ public Provider()
2727
put("minValue", 0);
2828
put("maxValue", 1);
2929
put("decimalPrecision", 3);
30-
}}, null),
30+
}}, 0.5),
3131
SeuratToolParameter.create("saturation.RNA.max", "Saturation.RNA Max", "Saturation.RNA max value", "ldk-numberfield", new JSONObject(){{
3232
put("minValue", 0);
3333
put("maxValue", 1);
3434
put("decimalPrecision", 3);
35-
}}, null),
35+
}}, 0.9),
3636
SeuratToolParameter.create("saturation.ADT.min", "Saturation.ADT Min", "Saturation.ADT min value", "ldk-numberfield", new JSONObject(){{
3737
put("minValue", 0);
3838
put("maxValue", 1);
3939
put("decimalPrecision", 3);
40-
}}, null),
40+
}}, 0.1),
4141
SeuratToolParameter.create("saturation.ADT.max", "Saturation.ADT Max", "Saturation.ADT max value", "ldk-numberfield", new JSONObject(){{
4242
put("minValue", 0);
4343
put("maxValue", 1);
@@ -46,7 +46,7 @@ public Provider()
4646
SeuratToolParameter.create("dropHashingFail", "Drop Cells Without Hashing", "If checked, any cell that lacks hashing data will be dropped. All cells from a lane that did not use hashing will be included.", "checkbox", new JSONObject(){{
4747
put("checked", true);
4848
}}, false),
49-
SeuratToolParameter.create("dropNullScGateConsensus", "Drop Cells With scGateConsensus", "If checked, any cell that lacks a call from scGateConsensus will be dropped.", "checkbox", new JSONObject(){{
49+
SeuratToolParameter.create("dropNullScGateConsensus", "Drop Cells Without scGateConsensus", "If checked, any cell that lacks a call from scGateConsensus will be dropped.", "checkbox", new JSONObject(){{
5050
put("checked", true);
5151
}}, false)
5252
), null, null);

0 commit comments

Comments
 (0)