📌  相关文章
📜  bash 查看 vcf 文件中的特定列 - Shell-Bash 代码示例

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

代码示例1
# Example usage using sed:
sed -n '/#/!p' input.vcf | cut -f 1,2,9,10 | less
# Sed removes the header info and then pipes to cut, which selects 
#    specific fields/columns to load