Skip to content

Commit b795083

Browse files
committed
Bugfix to AppendNimble
1 parent 69acb61 commit b795083

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
@@ -79,7 +79,7 @@ protected Chunk createParamChunk(SequenceOutputHandler.JobContext ctx, List<Seur
7979
JSONArray arr = json.getJSONArray(i);
8080
if (arr.length() != 4)
8181
{
82-
throw new PipelineJobException("Unexpected value: " + json.getString(i));
82+
throw new PipelineJobException("Unexpected value: " + json.get(i));
8383
}
8484

8585
int genomeId = arr.getInt(0);

0 commit comments

Comments
 (0)