We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbb86b commit 543aa91Copy full SHA for 543aa91
1 file changed
SequenceAnalysis/src/org/labkey/sequenceanalysis/ScatterGatherUtils.java
@@ -38,9 +38,9 @@ public static void possiblyCacheSupportFiles(SequenceOutputHandler.JobContext ct
38
{
39
for (String param : Arrays.asList("exclude_intervals", "forceSitesFile"))
40
41
- if (ctx.getParams().get("variantCalling.GenotypeGVCFs." + param) != null)
+ if (!ctx.getParams().isNull("variantCalling.GenotypeGVCFs." + param))
42
43
- File inputFile = ctx.getSequenceSupport().getCachedData(ctx.getParams().getInt("variantCalling.GenotypeGVCFs." + param));
+ File inputFile = ctx.getSequenceSupport().getCachedData(ctx.getParams().optInt("variantCalling.GenotypeGVCFs." + param));
44
if (!inputFile.exists())
45
46
throw new PipelineJobException("Unable to find file: " + inputFile.getPath());
0 commit comments