powered by
Get a two-letter genotype from a VCF GT field. Current implementation is quick and dirty, and only accepts 0/0, 0/1, or 1/1. Any other input to gt will return a missing value.
gt2refalt(gt, ref, alt)
Returnvalue
The genotype field (must be 0/0, 0/1, or 1/1).
The reference allele.
The alternate allele.
gt2refalt(gt="0/0", ref="R", alt="A") gt2refalt(gt="0/1", ref="R", alt="A") gt2refalt(gt="1/1", ref="R", alt="A") gt2refalt(gt="0/2", ref="R", alt="A") gt2refalt(gt="./.", ref="R", alt="A")
Run the code above in your browser using DataLab