Hi everyone
I have been trying to split content of one column into two. Sounds simple but I have not gotten it to work.
My file looks like this:
chr17 65505 65506 (#Coding_GN)@(#Coding_GN)
chr4 68144 68145 0!overlap@ (#Coding_GN_ensemble)
chr4 68199 68200 0!overlap@ (#Coding_GN_ensemble)
And I would like to split column 4 by @ so I get:
hr17 65505 65506 (#Coding_GN) (#Coding_GN)
chr4 68144 68145 0!overlap (#Coding_GN_ensemble)
chr4 68199 68200 0!overlap (#Coding_GN_ensemble)
Anyone know of a awk, sed or other UNIX inbuilt command/function which can do this?
Thanks
I have been trying to split content of one column into two. Sounds simple but I have not gotten it to work.
My file looks like this:
chr17 65505 65506 (#Coding_GN)@(#Coding_GN)
chr4 68144 68145 0!overlap@ (#Coding_GN_ensemble)
chr4 68199 68200 0!overlap@ (#Coding_GN_ensemble)
And I would like to split column 4 by @ so I get:
hr17 65505 65506 (#Coding_GN) (#Coding_GN)
chr4 68144 68145 0!overlap (#Coding_GN_ensemble)
chr4 68199 68200 0!overlap (#Coding_GN_ensemble)
Anyone know of a awk, sed or other UNIX inbuilt command/function which can do this?
Thanks