Description Usage Arguments Value References See Also Examples
Outputs a data frame of probabilistic network edges to a text file suitable as input to Cytoscape for visualization.
1 | writeEdges( network, threshhold = .5, fileName = "edges.txt")
|
network |
A network represented as a data frame in which each row corresponds to an edge for which the probability is estimated to be nonzero. The first column gives the name of the regulator, the second column gives the name of the regulated gene, and the third column gives the estimated probability for the regulator-gene pair. |
threshhold |
A threshhold on the probability that the variables in |
fileName |
A character string given the desired name of the output text file.
The default is |
The data frame of edges with those having probabilities below the specified
threshhold removed. As a side effect, this data from is output to a text
file named fileName
in a format suitable for use with Cytoscape for
visualization (see www.cytoscape.org).
Shannon P, Markiel A, Ozier O, Baliga NS, Wang JT, Ramage D, Amin N, Schwikowski B, Ideker T (2003), Cytoscape: a software environment for integrated models of biomolecular interaction networks. Genome Research 13:2498-504
1 2 3 4 5 6 7 8 9 10 | data(dream4)
network <- 1
nTimePoints <- length(unique(dream4ts10[[network]]$time))
edges1ts10 <- networkBMA( data = dream4ts10[[network]][,-(1:2)],
nTimePoints = nTimePoints, prior.prob = 0.1)
writeEdges(edges1ts10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.