Created
January 5, 2017 10:19
-
-
Save mbk0asis/a84b76d10e2a8f718ef95f7f979a89af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grep -Po 'c..*' COSMIC_TP53_MUT | sed 's/;/\t/g' | cut -f 1,3 | sed 's/CNT=//g'| grep -Po 'c.\d*(\_?\-?\+?)\d*' > position | |
grep -Po 'c..*' COSMIC_TP53_MUT | sed 's/;/\t/g' | cut -f 1,3 | sed 's/CNT=//g'| grep -Po '[a-zA-Z]*\>?[a-zA-Z]*\t' > sequence | |
grep -Po 'c..*' COSMIC_TP53_MUT | sed 's/;/\t/g' | cut -f 3 | sed 's/CNT=//g' > count | |
paste position sequence count | sed 's/c.//g' > COSMIC_TP53_MUT_all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment