Horje
bash view specific columns from vcf file Code Example
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




Shell

Related
how to install ruby on rails with curl Code Example how to install ruby on rails with curl Code Example
how to show lines on cat command Code Example how to show lines on cat command Code Example
minikube memory size Code Example minikube memory size Code Example
set up vim in zsh Code Example set up vim in zsh Code Example
ubuntu install meslo font Code Example ubuntu install meslo font Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9