Description Usage Arguments Details Value Author(s) See Also Examples
This function integrates the data-driven network (in sif format) with the network encoded in the model (generally derived from prior knowledge), adding links that are missing.
1 | mapDDN2model(DDN,model,CNOlist,allInter=TRUE)
|
DDN |
a sif file encoding a data-driven network, as created by Binference or MIinference |
model |
a model list, as created by readSif |
CNOlist |
a CNOlist, as created by makeCNOlist |
allInter |
one new link in the network can correspond to more links in the model, set it to TRUE if you want to add all possible links, FALSE to add only one link, default is TRUE |
The function receives as input a sif file with the data-driven network, as created by Binference or MIinference, and integrates it with the model, returning a new model with the integrated links.
a new Model with the integrated links and an additional field:
indexIntegr |
a vector with the indexes of the integrated links |
F.Eduati
readSif, readMIDAS, Binference, MIinference
1 2 3 4 5 6 7 8 9 10 11 12 | data(CNOlistDREAM,package="CellNOptR")
data(DreamModel,package="CellNOptR")
model<-preprocessing(data=CNOlistDREAM, model=DreamModel)
## Not run:
DDN<-Binference(CNOlistDREAM, tempCheckOrders=10, maxIter=100,
filename="BAYESIAN")
modelIntegr<-mapDDN2model(DDN=DDN,model=model,CNOlist=CNOlistDREAM)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.