View source: R/preprocessing.R
preprocessing | R Documentation |
This function performs any of the following preprocessing steps:
removes Non-Controllable and Non-Observables nodes
compress the model
and-gates expansion
preprocessing(data, model, cutNONC=TRUE, compression=TRUE,
expansion=TRUE, ignoreList=NA, maxInputsPerGate=2, verbose=TRUE)
data |
the CNOlist that contains the data that you will use |
model |
the model object as returned by readSIF |
cutNONC |
Removes the NONC nodes using cutNONC and findNONC (Default is TRUE). |
compression |
Compress the model using compressModel (Default is TRUE). |
expansion |
Add and gates using expandGates (Default is TRUE). |
ignoreList |
an index vector of states to ignore incoming edges in expandGates. |
maxInputsPerGate |
used by the expandGates function to set maximum inputs per and gates. |
verbose |
verbose option (Default is TRUE). |
The function can apply any or none of the pre-processing steps. It returns the new model and the indices returned by indexFinder.
the new model
T. Cokelaer
readSIF, readMIDAS, cutNONC, findNONC, compressModel, expandGates.
data(ToyModel,package="CellNOptR")
data(CNOlistToy,package="CellNOptR")
model = preprocessing(CNOlistToy, ToyModel, cutNONC=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.