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 6632524 commit 6d0aab3Copy full SHA for 6d0aab3
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceNormalizationTask.java
@@ -365,7 +365,8 @@ public RecordedActionSet run() throws PipelineJobException
365
366
if (fp.file2 != null)
367
{
368
- localCopy = _wd.getWorkingCopyForInput(FileSystemLike.wrapFile(fp.file2)).toNioPathForRead().toFile();
+ localCopyFileLike = _wd.getWorkingCopyForInput(FileSystemLike.wrapFile(fp.file2));
369
+ localCopy = localCopyFileLike == null ? null : localCopyFileLike.toNioPathForRead().toFile();
370
if (localCopy != null)
371
372
getJob().getLogger().debug("using local working copy for file: " + fp.file2.getPath());
0 commit comments