📜  bcftools 提取信息 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:36.940000             🧑  作者: Mango

代码示例1
# Example usage:
bcftools query --format '%CHROM\t%POS\t%INFO/END\t[%GT]\n' input_file.vcf
# Where:
#    - Fixed columns like CHROM and POS are referred to as %COLUMN
#    - Info fields need to be specified as %INFO/TAG
#    - Format fields need to be enclosed in brackets
#    - The tab \t and new line \n characters are used to format the output