Given a mutation string, return a mutation string with the primer nucleotide translated (because reverse primer)

translateMutationReverse(mutString)

Arguments

mutString

String describing a sequence change in the format Original->New i.e. "A->G"

Value

Primer Template mismatch in the format Primer/Template i.e. "T/G"

Examples

translateMutationReverse("A->G")
#> [1] "T/G"