Answers for "bash view specific columns from vcf file"

0

bash view specific columns from vcf file

# 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
Posted by: Guest on October-04-2020

Code answers related to "bash view specific columns from vcf file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language