Skip to content

Commit c60126b

Browse files
committed
Correct chunk order
1 parent e024131 commit c60126b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,9 @@ protected List<Chunk> getChunks(SequenceOutputHandler.JobContext ctx) throws Pip
116116
lines.add(")");
117117
lines.add("");
118118

119-
List<Chunk> ret = super.getChunks(ctx);
119+
List<Chunk> ret = new ArrayList<>();
120120
ret.add(new Chunk("molInfoFiles", null, null, lines, null));
121+
ret.addAll(super.getChunks(ctx));
121122

122123
return ret;
123124
}

0 commit comments

Comments
 (0)