Skip to content

Commit fe025f6

Browse files
committed
Allow users to set scoreCellCycle with NormalizeAndScale
1 parent af50469 commit fe025f6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ public Provider()
4949
SeuratToolParameter.create("nVariableFeatures", "# Variable Features", "Controls the number of variable features that will be used. This only applies to the standard NormalizeData/ScaleData pipeline, not SCTransform", "ldk-integerfield", new JSONObject(){{
5050
put("minValue", 0);
5151
}}, null),
52+
SeuratToolParameter.create("scoreCellCycle", "Score Cell Cycle?", "If checked, ScoreCellCycle will be run to compute Phase, which is stored in meta.data. If a field named Phase already exists, this will be skipped", "checkbox", new JSONObject(){{
53+
put("checked", true);
54+
}}, true),
5255
getSeuratThreadsParam()
5356
), Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);
5457
}

0 commit comments

Comments
 (0)