Entering edit mode
3.4 years ago
MAPK2
▴
50
I have a plink (bed, bim, fam) file. The .bim file has chr strings and I would like to remove chr. Is there any inherent command I can use? Is it Ok to just use unix command to remove chr?
head BFILE.bim
1 chr1:925875:A:G 0 925875 G A
1 chr1:925881:G:A 0 925881 A G
1 chr1:925912:C:G 0 925912 G C
Result I want:
1 1:925875:A:G 0 925875 G A
1 1:925881:G:A 0 925881 A G
1 1:925912:C:G 0 925912 G C