Skip to content

Commit 778ef90

Browse files
committed
Second bugfix to support for long-string multi-value params
1 parent 6baf568 commit 778ef90

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

singlecell/api-src/org/labkey/api/singlecell/pipeline/AbstractSingleCellPipelineStep.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -371,16 +371,15 @@ else if ("sequenceanalysis-trimmingtextarea".equals(pd.getFieldXtype()))
371371
{
372372
val = val.replace("'", "\\\'");
373373
serializeMultiValueParam(pd, body, val);
374-
return;
375-
376374
}
377375
else if (pd.isMultiValue())
378376
{
379377
serializeMultiValueParam(pd, body, val);
380-
return;
381378
}
382-
383-
body.add((pd.getVariableName() + " <- '" + val + "'"));
379+
else
380+
{
381+
body.add((pd.getVariableName() + " <- '" + val + "'"));
382+
}
384383
}
385384

386385
private void serializeMultiValueParam(SeuratToolParameter pd, List<String> body, String val)

0 commit comments

Comments
 (0)