R/print.BooleanStateInfo.R

Defines functions print.BooleanStateInfo

Documented in print.BooleanStateInfo

# Custom print function for class BooleanStateInfo
print.BooleanStateInfo <- function(x, activeOnly=FALSE, ...)
{
  # Create a TransitionTable object and print it
  cat("Transition table of Boolean network\n\n")
   
  transitionTable <- .internal.getTransitionTable(x)
  
  print(transitionTable, activeOnly=activeOnly, ...)
}

Try the BoolNet package in your browser

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

BoolNet documentation built on Oct. 2, 2023, 5:08 p.m.