1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
\name{print.ProbabilisticBooleanNetwork}
\Rdversion{1.1}
\alias{print.ProbabilisticBooleanNetwork}
\alias{print.BooleanNetworkCollection}
\title{
Print a probabilistic Boolean network
}
\description{
A specialized method to print an object of class \code{ProbabilisticBooleanNetwork}. For backward compatibility, this method also prints objects of class \code{BooleanNetworkCollection}, which have been replaced by \code{ProbabilisticBooleanNetwork}.
This prints all alternative transition functions and their probabilities. If the network is the result of a reconstruction from time series measurements, it also outputs the error the functions make on the time series. If genes are knocked-out or over-expressed, these genes are listed below the functions.
}
\usage{
\method{print}{ProbabilisticBooleanNetwork}(x, ...)
\method{print}{BooleanNetworkCollection}(x, ...)
}
\arguments{
\item{x}{
An object of class \code{ProbabilisticBooleanNetwork} or \code{BooleanNetworkCollection} to be printed
}
\item{\dots}{
Further parameters for the \code{\link{print}} method. Currently not used.
}
}
\value{
Invisibly returns the printed object
}
\seealso{
\code{\link{print}}, \code{\link{reconstructNetwork}}, \code{\link{loadNetwork}}
}
|