rna2dna
Convert RNA sequence to DNA sequence
Syntax
SeqDNA
= rna2dna(SeqRNA
)
Arguments
SeqRNA | RNA sequence specified by any of the following:
|
Description
converts
an RNA sequence to a DNA sequence by converting any uracil nucleotides
(SeqDNA
= rna2dna(SeqRNA
)U
) in the RNA sequence to thymine nucleotides
(T
). The DNA sequence is returned in the same format
as the RNA sequence. For example, if SeqRNA
is
a vector of integers, then so is SeqDNA
.
Examples
Convert an RNA sequence to a DNA sequence.
rna2dna('ACGAUGAGUCAUGCUU')
ans =
ACGATGAGTCATGCTT
Version History
Introduced before R2006a