DnaToRna {GeneR} | R Documentation |
Transformation from T to U in a sequence (dnaToRna), and the reverse (rnaToDna).
dnaToRna(seqno=0, from=1, to=0) rnaToDna(seqno=0, from=1, to=0)
seqno |
Integer, input sequence number. (bufseq) |
from,to |
Begining and ending of sequence to transform, can be vectors. 0 represent the last nucleotide and 1 the first one. |
seqno or -1 if error
L.Cottret
s<-"atuuutututu" placeString(s) dnaToRna() getSeq() #[1] "auuuuuuuuuu" rnaToDna() getSeq() #[1] "atttttttttt"