Skip to content

Commit

Permalink
Gemini: skip database creation of ensemble, avoiding vcf2db errors. F…
Browse files Browse the repository at this point in the history
…ixes #2961
  • Loading branch information
chapmanb committed Oct 3, 2019
1 parent b6dc2dc commit 8d60e82
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bcbio/variation/population.py
Expand Up @@ -20,7 +20,9 @@
# Current callers we can't create databases for
# mutect2 -- fails on multi-allelic inputs represented as non-diploid
# https://github.com/broadinstitute/gatk/issues/3564
NO_DB_CALLERS = ["mutect2"]
# Ensemble calls contain a mix of variant inputs which aren't suited
# for GEMINI database creation
NO_DB_CALLERS = ["mutect2", "ensemble"]

def prep_gemini_db(fnames, call_info, samples, extras):
"""Prepare a gemini database from VCF inputs prepared with snpEff.
Expand Down

0 comments on commit 8d60e82

Please sign in to comment.