Skip to content

Commit 445f6aa

Browse files
committed
Avoid NPE
1 parent 9400d51 commit 445f6aa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@ protected List<Chunk> addAdditionalChunks(SequenceOutputHandler.JobContext ctx,
145145
{
146146
Readset rs = ctx.getSequenceSupport().getCachedReadset(so.getSequenceOutputFile().getReadset());
147147
File callsFile = countData.get(so.getSequenceOutputFileId());
148+
if (callsFile == null)
149+
{
150+
continue;
151+
}
148152

149153
File markdown = new File(callsFile.getPath().replace(CellHashingServiceImpl.CALL_EXTENSION, ".md"));
150154
if (!markdown.exists())

0 commit comments

Comments
 (0)