Skip to content

Commit fe44423

Browse files
committed
Bugfix for scatter/gather without a primary output
1 parent 834878c commit fe44423

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/VariantProcessingRemoteSplitTask.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,14 @@ else if (output.getPath().startsWith(_wd.getDir().getPath()))
141141
throw new PipelineJobException(e);
142142
}
143143

144-
getPipelineJob().getLogger().debug("Final scatter output: " + output.getPath());
144+
if (output != null)
145+
{
146+
getPipelineJob().getLogger().debug("Final scatter output: " + output.getPath());
147+
}
148+
else
149+
{
150+
getPipelineJob().getLogger().debug("No primary scatter output produced");
151+
}
145152
}
146153
else
147154
{

0 commit comments

Comments
 (0)