Skip to content

Commit df07d45

Browse files
committed
Support inclusion/exclusion lists for CLR norm
1 parent ca0dff7 commit df07d45

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

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

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,17 @@ public Provider()
3535
SeuratToolParameter.create("minCellsPerGroup", "Min Cells Per Group", "Any group with fewer than this many cells will be dropped.", "ldk-integerfield", new JSONObject(){{
3636

3737
}}, 20),
38-
SeuratToolParameter.create("calculatePerCellUCell", "Calculate Per Feature UCell ", "If checked, ScaleData will only be performed on VariableFeatures, which should dramatically reduce time and memory", "checkbox", new JSONObject(){{
38+
SeuratToolParameter.create("calculatePerFeatureUCell", "Calculate Per Feature UCell ", "If checked, UCell will be run over each ", "checkbox", new JSONObject(){{
3939
put("checked", true);
40-
}}, true)
40+
}}, true),
41+
SeuratToolParameter.create("featureWhitelist", "Genes to Add to VariableFeatures", "These genes, entered comma-separated or one/line, will be added to the default Seurat::VariableFeatures gene set when running PCA", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
42+
put("height", 150);
43+
put("delimiter", ",");
44+
}}, null).delimiter(","),
45+
SeuratToolParameter.create("featureExclusionList", "Genes to Exclude From VariableFeatures", "These genes, entered comma-separated or one/line, will be excluded from the genes passed to RunPCA (which is otherwise determined by Seurat::VariableFeatures)", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
46+
put("height", 150);
47+
put("delimiter", ",");
48+
}}, null).delimiter(",")
4149
), Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);
4250
}
4351

0 commit comments

Comments
 (0)