We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834878c commit fe44423Copy full SHA for fe44423
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/VariantProcessingRemoteSplitTask.java
@@ -141,7 +141,14 @@ else if (output.getPath().startsWith(_wd.getDir().getPath()))
141
throw new PipelineJobException(e);
142
}
143
144
- getPipelineJob().getLogger().debug("Final scatter output: " + output.getPath());
+ 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
152
153
else
154
{
0 commit comments