R/checkfile.R

Defines functions checkfile

checkfile <- function(filename) {
  if(!file.exists(filename))
    stop(filename, " does not exist\n");
  ## note that path.expand is necessary for C procedures
  return(path.expand(filename))
}

Try the ribiosIO package in your browser

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

ribiosIO documentation built on Feb. 20, 2026, 5:09 p.m.