R/move.R

Defines functions move

Documented in move

move <- function(from, to){
    noms <- as.list(match.call())
    if(noms$from != noms$to){
        eval.parent(parse(text = paste(noms$from, "->", noms$to)))
        eval.parent(parse(text = paste("rm(", noms$from, ")")))
    }
}

mv <- move

Try the seqinr package in your browser

Any scripts or data that you put into this service are public.

seqinr documentation built on May 29, 2024, 6:36 a.m.