Skip to content

Commit 3fdad5d

Browse files
committed
Correct field xtype
1 parent 7962d73 commit 3fdad5d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/VariantProcessingJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ else if (_scatterGatherMethod == VariantProcessingStep.ScatterGatherMethod.fixed
159159

160160
public boolean doAllowSplitContigs()
161161
{
162-
return getParameterJson().optBoolean("scatterGather.allowSplitChromosomes", true);
162+
return getParameterJson().optBoolean("scatterGather.allowSplitChromosomes", false);
163163
}
164164

165165
public boolean isScatterJob()

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public Provider()
2323
SeuratToolParameter.create("performClrNormalization", "Perform CLR Normalization", "If true, Seurat CLR normalization will be performed. Otherwise any pre-existing normalization is used.", "checkbox", new JSONObject(){{
2424
put("checked", true);
2525
}}, true, "performClrNormalization", true),
26-
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textbox", new JSONObject(){{
26+
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textfield", new JSONObject(){{
2727

2828
}}, "ADT")
2929
), null, null);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Provider()
3333
put("delimiter", ",");
3434
put("stripCharsRe", "/['\"]/g");
3535
}}, null).delimiter(","),
36-
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textbox", new JSONObject(){{
36+
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textfield", new JSONObject(){{
3737

3838
}}, "ADT")
3939
), null, null);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static class Provider extends AbstractPipelineStepProvider<SingleCellStep
2020
public Provider()
2121
{
2222
super("CiteSeqPlots", "CiteSeq/ADT Plots", "CellMembrane/Seurat", "This will create FeaturePlots for all features in the ADT assay.", Arrays.asList(
23-
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textbox", new JSONObject(){{
23+
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textfield", new JSONObject(){{
2424

2525
}}, "ADT")
2626
), null, null);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public Provider()
2828
put("delimiter", ",");
2929
put("stripCharsRe", "/(^['\"]+)|(['\"]+$)/g");
3030
}}, "ClusterNames_0.2,ClusterNames_0.4,ClusterNames_0.6").delimiter(","),
31-
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textbox", new JSONObject(){{
31+
SeuratToolParameter.create("assayName", "Assay Name", "The assay to use", "textfield", new JSONObject(){{
3232

3333
}}, "ADT")
3434
), Arrays.asList("/sequenceanalysis/field/TrimmingTextArea.js"), null);

0 commit comments

Comments
 (0)