Description Usage Arguments Details Value Author(s) See Also Examples
Adds to the model some fields that are used by the simulation engine and calls prep4sim function from CellNOptR package
1 | prep4simFuzzy(model, paramsList, verbose=TRUE)
|
model |
A model, as output by readSIF, normally pre-processed but that is not a requirement of this function. |
paramsList |
A parameters list that must contain at least the CNOlist parameter in the Data field (param = list(data=cnolist)) and possibly optional arguments related to the fuzzy logic (see defaultParametersFuzzy) |
verbose |
a verbose option set to TRUE by default. |
This adds fields that are necessary for the simulation engine for both Boolean and constrained Fuzzy logic simulation.
In addition to the fields returned by the prep4sim function of CellNOptR, this function appends the following fields:
finalCube |
stores, for each reac(row) the location of its inputs (col) |
ixNeg |
stores, for each reac(row) and each input (col) whether it is a negative input |
ignoreCube |
logical matrix of the same size as the 2 above, that tells whether the particular cell is filled or not |
maxIx |
row vector that stores, for each reac, the location of its output |
modelname |
stores the name of the model from which these fields were derived |
C. Terfve, modified by M.K. Morris and T. Cokelaer
simFuzzyT1
1 2 3 4 5 | data(ToyModel, package="CellNOptR")
data(CNOlistToy, package="CellNOptR")
params <- defaultParametersFuzzy()
params$data = CNOlistToy
fields4sim <- prep4simFuzzy(ToyModel, params)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.