Changes
- Only allow one ALT allele per record, error if more than one is encountered tedil (73)
*This change affects expression syntax and VCF input requirements*:
- VCF files need to be split such that each record has only one ALT allele, this can be achieved with e.g. the following tools:
- [`bcftools norm -m-any […]`](http://samtools.github.io/bcftools/bcftools.html#norm)
- [`gatk LeftAlignAndTrimVariants […] --split-multi-allelics`](https://gatk.broadinstitute.org/hc/en-us/articles/360037225872-LeftAlignAndTrimVariants)
- [`vcfmulti2oneallele […]`](http://lindenb.github.io/jvarkit/VcfMultiToOneAllele.html)
- This makes filter expressions way less verbose and easier to use; instead of `ALT[0] == "C" and INFO["gnomad_AF"][0] > 0.01` (where `0` is the index of the first ALT allele), use `ALT == "C" and INFO["gnomad_AF"] > 0.01`. (This does reduce expressiveness a bit since you cannot reason about, say, the sum of alternate allele frequencies anymore)
- (Also consider splitting your VCF files *before* annotating with snpeff/vep/etc.)
- Export NA to enable checks such as `INFO["DP"] is NA` tedil (74)
- bool(NA) = False christopher-schroeder (72)