Skip to content

Commit 7b7ecbf

Browse files
committed
Reduce threshold to omit individual GenotypeGVCFs inputs, and also avoid this on scatter/gather jobs
1 parent ea3a609 commit 7b7ecbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/analysis/GenotypeGVCFHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ private File runGenotypeGVCFs(PipelineJob job, JobContext ctx, ProcessVariantsHa
329329
File outputVcfIdx = new File(outDir, basename + ".vcf.gz.tbi");
330330
File outputVcfDone = getDoneFile(outputVcf);
331331

332-
if (inputFiles.size() > 500)
332+
if (inputFiles.size() > 250 || ctx.getJob().isSplitJob())
333333
{
334334
ctx.getLogger().debug("Too many inputs, will not add them individually so as to spare PipelineJob size");
335335
}

0 commit comments

Comments
 (0)