#' Translates DNA to RNA
#'
#' @param DNA_seq String of DNA sequence
#'
#' @return A RNA sequence
#' @export
#'
#' @examples
#' # "ATGC" > "AUGC"
DNA_to_RNA <- function(DNA_seq){
RNA <- gsub("T", "U", DNA_seq)
return(RNA)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.