Generate summary statistics and quality control reports for VCF/BCF files
BCFTOOLS STATSbcftools stats generates detailed summary statistics for VCF/BCF files, including SNP/indel counts, Ts/Tv ratio, depth distribution, and per-sample metrics.
.vcf, .vcf.gz).bcf)bcftools stats input.vcf > stats.txt
bcftools stats -s - input.vcf.gz > stats.txt
plot-vcfstats -p plots/ stats.txt
bcftools stats -r chr1:1-1000000 input.vcf.gz > region_stats.txt
-s - for per-sample statistics.