欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vcf 文件拼接(snp、indel)

程序员文章站 2024-03-03 18:11:22
...
    bgzip -c raw_snp_vcf > raw_snp_bgzip.gz
    bcftools index raw_snp_bgzip.gz
    bgzip -c raw_indel_vcf > raw_indel_bgzip.gz
    bcftools index raw_indel_bgzip.gz
    bcftools concat -a -D raw_snp_bgzip.gz raw_indel_bgzip.gz -o ${raw_snp_indel_vcf}    

相关标签: 生信