Learn R Programming

baseq (version 0.1.4)

rna_to_dna: Reverse Transcription of a RNA sequence

Description

This function takes a RNA sequence as input and returns its DNA transcript.

Usage

rna_to_dna(sequence)

Value

A character string representing the RNA transcript of the input RNA sequence.

Arguments

sequence

A character string representing a RNA sequence.

Examples

Run this code
sequence <- "AUCGAGCUAGCUAGCUAGCUAGCU"
rna_to_dna(sequence)
# Returns "ATCGAGCTAGCTAGCTAGCTAGCT"

Run the code above in your browser using DataLab