#' DNA to RNA sequence transcription function
#'
#' @param DNA sequence to be transcribed
#'
#' @export
DNA_to_RNA <- function(DNA){
RNA <- gsub("T", "U", DNA)
return(RNA)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.