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

translateMutationForward(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. "A/C"

Examples

translateMutationForward("A->G")
#> [1] "A/C"