Skip to content

Instantly share code, notes, and snippets.

@poeli
Created May 9, 2018 19:43
Show Gist options
  • Save poeli/00bdc18f09e7da586c450051fb250109 to your computer and use it in GitHub Desktop.
Save poeli/00bdc18f09e7da586c450051fb250109 to your computer and use it in GitHub Desktop.
Convert Us to Ts in FASTA file
#!/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