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/FilterRawCounts.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,13 @@ public Provider()
25
25
}}, 0, "nCount_RNA.low", false),
26
26
SeuratToolParameter.create("nCountRnaHigh", "Max UMI Count", "Cells with UMI counts above this value will be discarded", "ldk-integerfield", newJSONObject(){{
27
27
put("minValue", 0);
28
-
}}, 20000, "nCount_RNA.high", false),
28
+
}}, 30000, "nCount_RNA.high", false),
29
29
SeuratToolParameter.create("nCountFeatureLow", "Min Feature Count", "Cells with unique feature totals below this value will be discarded", "ldk-integerfield", newJSONObject(){{
30
30
put("minValue", 0);
31
-
}}, 200, "nFeature.low", false),
31
+
}}, 150, "nFeature.low", false),
32
32
SeuratToolParameter.create("nCountFeatureHigh", "Max Feature Count", "Cells with unique feature totals above this value will be discarded", "ldk-integerfield", newJSONObject(){{
33
33
put("minValue", 0);
34
-
}}, 5000, "nFeature.high", false),
34
+
}}, 7500, "nFeature.high", false),
35
35
SeuratToolParameter.create("pMitoLow", "Min Percent Mito", "Cells percent mitochondrial genes below this value will be discarded", "ldk-numberfield", newJSONObject(){{
Copy file name to clipboardExpand all lines: singlecell/src/org/labkey/singlecell/pipeline/singlecell/PrepareRawCounts.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,10 +39,10 @@ public Provider()
39
39
}}, 0.001),
40
40
SeuratToolParameter.create("maxAllowableCells", "Max Cells Allowed", "If more than this many cells are predicted by EmptyDrops, the job will fail", "ldk-integerfield", newJSONObject(){{
41
41
put("minValue", 0);
42
-
}}, 20000),
42
+
}}, 35000),
43
43
SeuratToolParameter.create("minAllowableCells", "Min Cells Allowed", "If fewer than this many cells are predicted by EmptyDrops, the job will fail", "ldk-integerfield", newJSONObject(){{
44
44
put("minValue", 0);
45
-
}}, 1500),
45
+
}}, 500),
46
46
SeuratToolParameter.create("useEmptyDropsCellRanger", "Use emptyDropsCellRanger", "If checked, this will run emptyDropsCellRanger instead of emptyDrops", "checkbox", null, false),
47
47
SeuratToolParameter.create("nExpectedCells", "# Expected Cells", "Only applied if emptyDropsCellRanger is selected. Passed to n.expected.cells argument", "ldk-integerfield", newJSONObject(){{
0 commit comments