#' To find the scores between strings using Levenshtein distance
#' @param sequences a list of character vectors, the sequences we are analysing
#' @return A dist object of the Levenshtein distances between the sequences
#' @export
stringdist_levenshtein <- function(sequences)
{
return(stringdist::stringdistmatrix(as.character(sequences)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.