BCFTOOLS VIEW 可以用于查看VCF或BCF文件,VCF/BCF互相转换,提取子集,或进行过滤,用法如下:
1 | bcftools view [options] <in.vcf.gz> [region1 [...]] |
参数如下:
1 | About: VCF/BCF conversion, view, subset and filter VCF/BCF files. |
一、查找条目
1 | > bcftools view -e 'GT="1|1"' xxx.vcf.gz | wc -l # 查找不符合 GT="1|1" 的条目,并输出数量 |
二、提取INDEL/SNP
1 | > bcftools view -v indels xxx.vcf.gz | wc -l |