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 March 31, 2023, 3:05 p.m.