R/F2_transcribe.R

Defines functions transcribe

Documented in transcribe

#' Title Transcription
#'
#' @param DNA_seq
#'
#' @return mRNA
#' @export
#'
#' @examples transcribe ("ATCG")
#'
transcribe <- function(DNA_seq){
  mRNA <- gsub("T", "U", DNA_seq)
  return(mRNA)
}
rforbiodatascience22/group_17_package documentation built on April 5, 2022, 7:51 p.m.