Skip to content

Commit

Permalink
Rename parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Feb 7, 2024
1 parent b97cd9d commit 6efdb41
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ public Provider()
SeuratToolParameter.create("doAsinhTransform", "Do asinh Transform ", "If checked, count data will be transformed using asinh prior to CLR", "checkbox", new JSONObject(){{
put("checked", true);
}}, true),
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(){{
SeuratToolParameter.create("featureWhitelist", "Inclusion List", "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(){{
put("height", 150);
put("delimiter", ",");
put("stripCharsRe", "/['\"]/g");
}}, null).delimiter(","),
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(){{
SeuratToolParameter.create("featureExclusionList", "Exclusion List", "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(){{
put("height", 150);
put("delimiter", ",");
put("stripCharsRe", "/['\"]/g");
Expand Down

0 comments on commit 6efdb41

Please sign in to comment.