MDREGEX

regex to extract MD string groups ex: "11A3^G" -> [(11, "A"), (3, "^G")]

auto MDREGEX = regex(`(\d+)([\^ATGCN]*)`);

Meta