Skip to content

Commit de8a6ec

Browse files
committed
More informative error
1 parent f113ab2 commit de8a6ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/variant/VariantFiltrationStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public Output processVariants(File inputVCF, File outputDirectory, ReferenceGeno
114114
File maskData = getPipelineCtx().getSequenceSupport().getCachedData(mask.getInt("fileId"));
115115
if (maskData == null || !maskData.exists())
116116
{
117-
throw new PipelineJobException("file not found for dataId: " + mask.opt("fileId"));
117+
throw new PipelineJobException("file not found for dataId: " + mask.opt("fileId") + (maskData == null ? ". file was null" : ". path: " + maskData.getPath()));
118118
}
119119

120120
SequenceAnalysisService.get().ensureFeatureFileIndex(maskData, getPipelineCtx().getLogger());

0 commit comments

Comments
 (0)