Skip to content

Commit 083d6e7

Browse files
committed
Update escape argument name
1 parent 74be93b commit 083d6e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

singlecell/resources/chunks/RunEscape.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ for (datasetId in names(seuratObjects)) {
22
printName(datasetId)
33
seuratObj <- readSeuratRDS(seuratObjects[[datasetId]])
44

5-
seuratObj <- CellMembrane::RunEscape(seuratObj, outputAssayName = outputAssayName, doPlot = TRUE, performDimRedux = performDimRedux)
5+
seuratObj <- CellMembrane::RunEscape(seuratObj, outputAssayBaseName = outputAssayBaseName, doPlot = TRUE, performDimRedux = performDimRedux)
66

77
saveData(seuratObj, datasetId)
88

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
2121
public Provider()
2222
{
2323
super("RunEscape", "Escape/ssGSEA", "escape", "Runs escape to perform ssGSEA using Hallmark gene sets.", Arrays.asList(
24-
SeuratToolParameter.create("outputAssayName", "Output Assay Name", "The name of the assay to store results", "textfield", new JSONObject(){{
24+
SeuratToolParameter.create("outputAssayBaseName", "Output Assay Basename", "The name of the assay to store results", "textfield", new JSONObject(){{
2525
put("allowBank", false);
26-
}}, "escape.ssGSEA"),
26+
}}, "escape."),
2727
SeuratToolParameter.create("performDimRedux", "Perform DimRedux", "If true, the standard seurat PCA/FindClusters/UMAP process will be run on the escape data. This may be most useful when using a customGeneSet or a smaller set of features/pathways", "checkbox", new JSONObject(){{
2828

2929
}}, false, null, true)

0 commit comments

Comments
 (0)