Skip to content

Commit 2e356d1

Browse files
committed
Update seurat defaults
1 parent 9c0b197 commit 2e356d1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ public Provider()
2525
}}, 0, "nCount_RNA.low", false),
2626
SeuratToolParameter.create("nCountRnaHigh", "Max UMI Count", "Cells with UMI counts above this value will be discarded", "ldk-integerfield", new JSONObject(){{
2727
put("minValue", 0);
28-
}}, 20000, "nCount_RNA.high", false),
28+
}}, 30000, "nCount_RNA.high", false),
2929
SeuratToolParameter.create("nCountFeatureLow", "Min Feature Count", "Cells with unique feature totals below this value will be discarded", "ldk-integerfield", new JSONObject(){{
3030
put("minValue", 0);
31-
}}, 200, "nFeature.low", false),
31+
}}, 150, "nFeature.low", false),
3232
SeuratToolParameter.create("nCountFeatureHigh", "Max Feature Count", "Cells with unique feature totals above this value will be discarded", "ldk-integerfield", new JSONObject(){{
3333
put("minValue", 0);
34-
}}, 5000, "nFeature.high", false),
34+
}}, 7500, "nFeature.high", false),
3535
SeuratToolParameter.create("pMitoLow", "Min Percent Mito", "Cells percent mitochondrial genes below this value will be discarded", "ldk-numberfield", new JSONObject(){{
3636
put("minValue", 0);
3737
put("maxValue", 1);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ public Provider()
3939
}}, 0.001),
4040
SeuratToolParameter.create("maxAllowableCells", "Max Cells Allowed", "If more than this many cells are predicted by EmptyDrops, the job will fail", "ldk-integerfield", new JSONObject(){{
4141
put("minValue", 0);
42-
}}, 20000),
42+
}}, 35000),
4343
SeuratToolParameter.create("minAllowableCells", "Min Cells Allowed", "If fewer than this many cells are predicted by EmptyDrops, the job will fail", "ldk-integerfield", new JSONObject(){{
4444
put("minValue", 0);
45-
}}, 1500),
45+
}}, 500),
4646
SeuratToolParameter.create("useEmptyDropsCellRanger", "Use emptyDropsCellRanger", "If checked, this will run emptyDropsCellRanger instead of emptyDrops", "checkbox", null, false),
4747
SeuratToolParameter.create("nExpectedCells", "# Expected Cells", "Only applied if emptyDropsCellRanger is selected. Passed to n.expected.cells argument", "ldk-integerfield", new JSONObject(){{
4848
put("minValue", 0);

0 commit comments

Comments
 (0)