Skip to content

Commit

Permalink
Bugfix to AppendNimble
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 24, 2025
1 parent 69acb61 commit b795083
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected Chunk createParamChunk(SequenceOutputHandler.JobContext ctx, List<Seur
JSONArray arr = json.getJSONArray(i);
if (arr.length() != 4)
{
throw new PipelineJobException("Unexpected value: " + json.getString(i));
throw new PipelineJobException("Unexpected value: " + json.get(i));
}

int genomeId = arr.getInt(0);
Expand Down

0 comments on commit b795083

Please sign in to comment.