findNONC | R Documentation |
This function finds the indexes of the non-observable and non controllable species and returns the indices, in the model, of the species to remove
findNONC(model, indexes, verbose=FALSE)
model |
a model structure, as created by readSIF |
indexes |
a list of indexes of the species stimulated/inhibited/measured, as created by indexFinder from a model. |
verbose |
verbose option (default to FALSE) |
This function uses the function floyd.warshall.all.pairs.sp from the package RBGL. Non observable nodes are those that do not have a path to any measured species in the model, whereas non controllable nodes are those that do not receive any information from a species that is perturbed in the data.
a vector of indices of species to remove
No need to call this function directly since version 0.99.24. Use preprocessing instead.
C. Terfve
cutNONC, indexFinder, readSIF
data(CNOlistToy, package="CellNOptR")
data(ToyModel, package="CellNOptR")
checkSignals(CNOlistToy, ToyModel)
indicesToy <- indexFinder(CNOlistToy, ToyModel)
ToyNCNOindices <- findNONC(ToyModel, indicesToy)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.