R/internal_user_opt_printCat.R

Defines functions print_cat

Documented in print_cat

#' Internal function - auxiliary to interactive procedure
#'
#' @param print_cat Character
#' @param spp Character
#' @param family Character
#'
#' @return interactive action in console
#' @keywords internal
#' 
print_cat <- function(print_cat, spp, family){
  cat("in which/between Genus species", spp, "must be inserted")
  cat("\n")
  for(i in 1:length(print_cat)){
    cat(i, print_cat[i], sep="\t")
    cat("\n")
  }
  cat("\n")
  cat(i + 1, "or, to insert in the node corresponding to the Family:", family, sep= "\t")
  cat("\n")
}

Try the FishPhyloMaker package in your browser

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

FishPhyloMaker documentation built on Sept. 15, 2021, 9:09 a.m.