Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #bash #view #specific #columns #vcf #file
ADD COMMENT
Topic
Name
8+9 =