R/proto.R

Defines functions print.fwsim_fixed_sim_genealogy plot.fwsim_fixed_sim_genealogy

print.fwsim_fixed_sim_genealogy <-
function(x, ...) {
  if (!is(x, "fwsim_fixed_sim_genealogy")) stop("x must be a fwsim_fixed_sim_genealogy object")
  print_simulation_info(x)
    
  return(invisible(NULL))
}

plot.fwsim_fixed_sim_genealogy <-
function(x, which = 1L, ...) {
  if (!is(x, "fwsim_fixed_sim_genealogy")) stop("x must be a fwsim_fixed_sim_genealogy object")
  
  
      
  return(invisible(NULL))
}

Try the fwsim package in your browser

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

fwsim documentation built on May 2, 2019, 8:33 a.m.