Skip to content

Commit 69acb61

Browse files
committed
Bugfix to AppendNimble
1 parent 22034c2 commit 69acb61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected Chunk createParamChunk(SequenceOutputHandler.JobContext ctx, List<Seur
7777
for (int i = 0; i < json.length(); i++)
7878
{
7979
JSONArray arr = json.getJSONArray(i);
80-
if (arr.length() != 3)
80+
if (arr.length() != 4)
8181
{
8282
throw new PipelineJobException("Unexpected value: " + json.getString(i));
8383
}

0 commit comments

Comments
 (0)