Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. arron@arron-Ideapad-Z570 ~/Phd $ cat test_pph_s.csv | cut -f 1,2,3
  2. #o_acc o_pos o_aa1
  3. ENSG00000145888 455 H
  4. ENSG00000145888 450 R
  5. ENSG00000145888 440 M
  6. ENSG00000145888 428 R
  7. ENSG00000145888 428 R
  8.  
  9. arron@arron-Ideapad-Z570 ~/Phd $ cat test_pph_s.csv | cut -f 1,2,3 | tr "\t" ","
  10. #o_acc , o_pos,o_aa1
  11. ENSG00000145888 , 455, H
  12. ENSG00000145888 , 450, R
  13. ENSG00000145888 , 440, M
  14. ENSG00000145888 , 428, R
  15. ENSG00000145888 , 428, R
  16.  
  17. arron@arron-Ideapad-Z570 ~/Phd $ cat test_pph_s.csv | cut -f 1,2,3 | tr "\t" ","
  18.  
  19. #o_acc,o_pos,o_aa1
  20. ENSG00000145888,455,H
  21. ENSG00000145888,450,R
  22. ENSG00000145888,440,M
  23. ENSG00000145888,428,R
  24. ENSG00000145888,428,R
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement