Skip to content

Commit 237e848

Browse files
committed
Rename several single-cell tools
1 parent 69d8171 commit 237e848

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

singlecell/api-src/org/labkey/api/singlecell/CellHashingService.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,8 @@ public enum CALLING_METHOD
277277
multiseq(true),
278278
htodemux(false),
279279
dropletutils(true),
280-
threshold(false),
281-
peaknd(false),
282-
seqnd(false);
280+
bff(true);
281+
//bff_rec(true);
283282

284283
boolean isDefault;
285284

singlecell/resources/web/singlecell/panel/PoolImportPanel.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,8 @@ Ext4.define('SingleCell.panel.PoolImportPanel', {
285285
if (val && !Ext4.isNumeric(val)) {
286286
val = val.replace(/[^0-9]+/, '');
287287
}
288-
if (workbook && Ext4.isNumeric(val) && workbook !== val){
288+
289+
if (workbook && Ext4.isNumeric(val)){
289290
return workbook + '-' + val;
290291
}
291292

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
2121
{
2222
public Provider()
2323
{
24-
super("DimPlots", "Create DimPlots", "Seurat", "This will generate DimPlots grouped by the variables below. Any variable not present is skipped.", Arrays.asList(
24+
super("DimPlots", "DimPlots", "Seurat", "This will generate DimPlots grouped by the variables below. Any variable not present is skipped.", Arrays.asList(
2525
SeuratToolParameter.create("fieldNames", "Fields To Plot", "Enter one field name per line", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
2626
put("allowBlank", false);
2727
put("height", 150);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
2121
{
2222
public Provider()
2323
{
24-
super("FeaturePlots", "Create FeaturePlots", "Seurat", "This will generate FeaturePlots for each of the features/variables below. Any variable not present is skipped.", Arrays.asList(
24+
super("FeaturePlots", "FeaturePlots", "Seurat", "This will generate FeaturePlots for each of the features/variables below. Any variable not present is skipped.", Arrays.asList(
2525
SeuratToolParameter.create("fieldNames", "Fields To Plot", "Enter one field name per line", "sequenceanalysis-trimmingtextarea", new JSONObject(){{
2626
put("allowBlank", false);
2727
put("height", 150);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
2121
{
2222
public Provider()
2323
{
24-
super("PhenotypePlots", "Create Phenotype Plots", "Seurat", "This will generate FeaturePlots for a pre-defined set of immune markers. Any feature not present is skipped.", null, Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);
24+
super("PhenotypePlots", "Immune Phenotype Plots", "Seurat", "This will generate FeaturePlots for a pre-defined set of immune markers. Any feature not present is skipped.", null, Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);
2525
}
2626

2727
@Override

0 commit comments

Comments
 (0)