#'@title Reverses the order of operations in a cigar string
#'@description For example, the string "20M5D15M" would become "15M5D20M"
#'@param cigars the cigar strings.
#'@return The reversed cigar string
reverseCigar <- function(cigars){
wdths <- explodeCigarOpLengths(cigars)
ops <- explodeCigarOps(cigars)
temp <- rev(relist(rev(paste0(unlist(wdths), unlist(ops))), rev(wdths)))
result <- as.character(Map(paste, temp, collapse = ""))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.