Skip to content

Commit 6179c68

Browse files
committed
Update argument names
1 parent ffada42 commit 6179c68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

singlecell/resources/chunks/TrainCelltypist.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ datasetId <- names(seuratObjects)[[1]]
66
printName(datasetId)
77
seuratObj <- readRDS(seuratObjects[[datasetId]])
88

9-
RIRA::TrainCellTypist(seuratObj, labelField = labelField, minCellsPerClass = minCellsPerClass, excludedClasses = excludedClasses, modelFile = modelFile, featureWhitelist = featureWhitelist, featureExclusionList = featureExclusionList, tempFileLocation = '/work')
9+
RIRA::TrainCellTypist(seuratObj, labelField = labelField, minCellsPerClass = minCellsPerClass, excludedClasses = excludedClasses, modelFile = modelFile, featureInclusionList = featureInclusionList, featureExclusionList = featureExclusionList, tempFileLocation = '/work')

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ public Provider()
5555
put("height", 200);
5656
put("delimiter", ";");
5757
}}, "NA", "excludedClasses", true, true),
58-
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(){{
58+
SeuratToolParameter.create("featureInclusionList", "Features to Include", "These genes, entered comma-separated or one/line, will be used to subset the input object", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
5959
put("height", 150);
6060
put("delimiter", ",");
6161
}}, null).delimiter(","),
62-
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(){{
62+
SeuratToolParameter.create("featureExclusionList", "Features to Exclude", "These genes, entered comma-separated or one/line, will be excluded from the input object", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
6363
put("height", 150);
6464
put("delimiter", ",");
6565
}}, null).delimiter(",")

0 commit comments

Comments
 (0)