Perform SNP and indel calling from genotype likelihoods
BCFTOOLS CALLbcftools call performs SNP and indel calling from genotype likelihoods generated by bcftools mpileup.
bcftools call -mv input.bcf -Oz -o output.vcf.gz
bcftools call -cv input.bcf -Ob -o output.bcf
bcftools call -mv --ploidy 2 input.bcf -Oz -o output.vcf.gz
bcftools call -mv -r chr1:1000-5000 input.bcf -Oz -o region.vcf.gz
-m for multiallelic calling (recommended).