reverseSeq {matchprobes} | R Documentation |
Functions to obtain the reverse sequence
reverseSeq(seq)
seq |
Character vector. |
The function reverses the order of the constituent character strings of its argument.
A character vector of the same length as seq
.
R. Gentleman, W. Huber
w <- c("hey there", "you silly fool") reverseSeq(w) w <- "able was I ere I saw Elba" reverseSeq(w)