Skip to content

Commit 67cf755

Browse files
committed
Update field size
1 parent 4fc511b commit 67cf755

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ public Provider()
2626
put("allowBlank", false);
2727
}}, "vst"),
2828
SeuratToolParameter.create("blockSize", "Block Size", "This will be passed to block.size in Seurat::ScaleData, which determines the number of features processed as a time. Increasing might increase speed at a memory cost, and descreasing on large datasets might reduce memory at a cost of overall speed.", "ldk-integerfield", new JSONObject(){{
29-
put("allowBlank", false);
30-
put("height", 150);
31-
put("delimiter", ",");
32-
}}, 1000, "block.size", true)
29+
30+
}}, null, "block.size", false)
3331
), Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);
3432
}
3533

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ public Provider()
2121
{
2222
super("RemoveCellCycle", "Remove Cell Cycle", "OOSAP", "This will score cells by cell cycle phase and regress out cell cycle.", Arrays.asList(
2323
SeuratToolParameter.create("blockSize", "Block Size", "This will be passed to block.size in Seurat::ScaleData, which determines the number of features processed as a time. Increasing might increase speed at a memory cost, and descreasing on large datasets might reduce memory at a cost of overall speed.", "ldk-integerfield", new JSONObject(){{
24-
put("allowBlank", false);
25-
put("height", 150);
26-
put("delimiter", ",");
27-
}}, 1000, "block.size", true)
24+
25+
}}, null, "block.size", false)
2826
), null, null);
2927
}
3028

0 commit comments

Comments
 (0)