Convert RNA sequence to DNA sequence
SeqDNA
= rna2dna(SeqRNA
)
SeqRNA | RNA sequence specified by any of the following:
|
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
.
Convert an RNA sequence to a DNA sequence.
rna2dna('ACGAUGAGUCAUGCUU')
ans =
ACGATGAGTCATGCTT