Skip to content

Commit 6b2eea5

Browse files
committed
Add null check
1 parent 92ec1c6 commit 6b2eea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ protected Map<Integer, File> prepareCountData(SingleCellOutput output, SequenceO
133133
ctx.getLogger().info("CITE-seq not used, skipping: " + parentReadset.getName());
134134
}
135135

136-
dataIdToCalls.put(wrapper.getSequenceOutputFileId(), finalOutput.getParentFile());
136+
dataIdToCalls.put(wrapper.getSequenceOutputFileId(), finalOutput == null ? null : finalOutput.getParentFile());
137137
}
138138

139139
return dataIdToCalls;

0 commit comments

Comments
 (0)