Created
May 9, 2018 19:43
-
-
Save poeli/00bdc18f09e7da586c450051fb250109 to your computer and use it in GitHub Desktop.
Convert Us to Ts in FASTA file
This file contains 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
#!/bin/sh | |
awk '$0~/^>/{print $0;next}; {gsub("U","T");print $0}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment