Wednesday, January 13, 2016

awk print a line if matching a column

awk '$4 != "something"{print $0} ' input.file

print $0: print the whole line
if column 4 matches the text "something"



ACMG guidelines: http://www.nature.com/gim/journal/v15/n7/pdf/gim201373a.pdf

No comments:

Post a Comment