#' Convert a sense (coding) DNA sequence into mRNA
#'
#' @param dna_seq character vector
#'
#' @return Returns an mRNA sequence (character vector).
#' @export
#'
#' @examples transcribe("ACTG")
transcribe <- function(dna_seq){
mrna <- gsub("T", "U", dna_seq)
return(mrna)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.