Skip to content

Instantly share code, notes, and snippets.

@moonwatcher
Last active August 29, 2015 14:19
Show Gist options
  • Save moonwatcher/c9174ea0b8ef275bbbc2 to your computer and use it in GitHub Desktop.
Save moonwatcher/c9174ea0b8ef275bbbc2 to your computer and use it in GitHub Desktop.
iupac nucleic acid notation and ambiguity code reverse complement table
{
"A": "T",
"C": "G",
"G": "C",
"T": "A",
"R": "Y",
"Y": "R",
"K": "M",
"M": "K",
"S": "S",
"W": "W",
"B": "V",
"D": "H",
"H": "D",
"V": "B",
"N": "N"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment