Advertisement
Guest User

Untitled

a guest
Jul 9th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. PRO 1
  2. GLN 5.55112e-17
  3. ILE -6.245e-17
  4. THR 5.55112e-17
  5.  
  6. awk '{if($2!=1){print $1,"0"}else{print $0}}' file
  7. PRO 1
  8. GLN 0
  9. ILE 0
  10. THR 0
  11.  
  12. awk '$2!=1 {print $1,"0"} {print $0}' file
  13. PRO 1
  14. GLN 0
  15. GLN 5.55112e-17
  16. ILE 0
  17. ILE -6.245e-17
  18. THR 0
  19. THR 5.55112e-17
  20.  
  21. awk '$2!=1 {print $1,"0"} {print $0}' file
  22.  
  23. awk '$2!=1 {print $1,"0"} $2==1 {print $0}' file
  24.  
  25. $ awk '$2!=1 {print $1,"0";next} {print $0}' file
  26. PRO 1
  27. GLN 0
  28. ILE 0
  29. THR 0
  30.  
  31. $ awk '$2 != 1 {print $1,"0";next}1' file
  32. PRO 1
  33. GLN 0
  34. ILE 0
  35. THR 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement