Skip to content

Commit f41e9b1

Browse files
committed
Fix argument
1 parent c81e071 commit f41e9b1

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
@@ -371,7 +371,7 @@ private File runGenotypeGVCFs(PipelineJob job, JobContext ctx, ProcessVariantsHa
371371
mergeArgs.add(sitesOnlyVcf.getPath());
372372

373373
mergeArgs.add("-R");
374-
mergeArgs.add(genome.getWorkingFastaFile());
374+
mergeArgs.add(genome.getWorkingFastaFile().getPath());
375375

376376
runner.execute(mergeArgs);
377377
ctx.getFileManager().addIntermediateFile(sitesOnlyVcf);

0 commit comments

Comments
 (0)