DnaToRna {GeneR}R Documentation

Transformation from T to U in a sequence, and the reverse

Description

Transformation from T to U in a sequence (dnaToRna), and the reverse (rnaToDna).

Usage

dnaToRna(seqno=0, from=1, to=0)
rnaToDna(seqno=0, from=1, to=0)

Arguments

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.

Value

seqno or -1 if error

Author(s)

L.Cottret

Examples


s<-"atuuutututu"  
placeString(s)  
dnaToRna()        
getSeq()         
#[1] "auuuuuuuuuu"      
rnaToDna()  
getSeq()         
#[1] "atttttttttt"        


[Package GeneR version 1.4.2 Index]