R/pfim_help.R

Defines functions pfim_help

#' Show help for argument
#' @param argument string to speficy which argument to show help info for. If NULL, a list of all available arguments is shown. Help information is extracted from stdin.R template script provided with PFIM.
#' @export
pfim_help <- function(argument = "") {
  if(!is.null(argument)) {
    # extract help info from stdin template
  } else {
    # show list of all available arguments
  }
}
ronkeizer/PFIMwrap documentation built on May 27, 2019, 1:50 p.m.