Add check for mixed genotype so that we don't exception out for a valid record

This commit is contained in:
Eric Banks 2011-12-14 11:26:43 -05:00
parent 9497e9492c
commit 7648521718
1 changed files with 2 additions and 0 deletions

View File

@ -182,6 +182,8 @@ public class CountVariants extends VariantEvaluator implements StandardEval {
nHomDerived++;
}
break;
case MIXED:
break;
default:
throw new ReviewedStingException("BUG: Unexpected genotype type: " + g);