Skip to content

Commit 002550f

Browse files
committed
Force inclusion of retainAmbiguousFeatures param
1 parent 06d625a commit 002550f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import org.labkey.api.sequenceanalysis.pipeline.PipelineContext;
88
import org.labkey.api.sequenceanalysis.pipeline.SequenceOutputHandler;
99
import org.labkey.api.sequenceanalysis.pipeline.ToolParameterDescriptor;
10+
import org.labkey.api.singlecell.pipeline.SeuratToolParameter;
1011
import org.labkey.api.singlecell.pipeline.SingleCellStep;
1112

1213
import java.util.Arrays;
@@ -31,14 +32,13 @@ public Provider()
3132
{{
3233
put("allowBlank", false);
3334
}}, null),
34-
ToolParameterDescriptor.create("retainAmbiguousFeatures", "Retain Ambiguous Features", "If checked, features hitting more than one reference will be retained", "checkbox", new JSONObject()
35+
SeuratToolParameter.create("retainAmbiguousFeatures", "Retain Ambiguous Features", "If checked, features hitting more than one reference will be retained", "checkbox", new JSONObject()
3536
{{
3637
put("check", false);
37-
}}, false)
38+
}}, false, null, true)
3839
), Arrays.asList("sequenceanalysis/field/GenomeField.js", "/singlecell/panel/NimbleAppendPanel.js"), null);
3940
}
4041

41-
4242
@Override
4343
public AppendNimble create(PipelineContext ctx)
4444
{

0 commit comments

Comments
 (0)