Skip to content

Instantly share code, notes, and snippets.

@dacarlin
Created July 27, 2014 00:36
Show Gist options
  • Save dacarlin/65965dfe130f0a2c4bbb to your computer and use it in GitHub Desktop.
Save dacarlin/65965dfe130f0a2c4bbb to your computer and use it in GitHub Desktop.
Reverse complement of a nucleotide sequence in Bash
grep '^[atcg]' $1 | rev | tr atcg tagc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment