Skip to content

Commit 9563a46

Browse files
committed
Add --genomicsdb-use-vcf-codec workaround to GenotypeGVCFs
1 parent 6eddc8f commit 9563a46

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/GenotypeGVCFsWrapper.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,13 @@ public void execute(File referenceFasta, File outputFile, @Nullable List<String>
5050
else if (AbstractGenomicsDBImportHandler.TILE_DB_FILETYPE.isType(inputFile))
5151
{
5252
args.add("gendb://" + inputFile.getParentFile().getPath());
53+
//See: https://github.com/broadinstitute/gatk/issues/6667
54+
args.add("--genomicsdb-use-vcf-codec");
5355
}
5456
else if (inputFile.isDirectory())
5557
{
5658
args.add("gendb://" + inputFile.getPath());
59+
args.add("--genomicsdb-use-vcf-codec");
5760
}
5861
else
5962
{

0 commit comments

Comments
 (0)