Usage
exportNetworkToCytoscape(adjMat, edgeFile = NULL, nodeFile = NULL, weighted = TRUE, threshold = 0.5,
nodeNames = NULL, altNodeNames = NULL, nodeAttr = NULL, includeColNames = TRUE)
Arguments
adjMat
adjacency matrix giving connection strengths among the nodes in the network.
edgeFile
file name of the file to contain the edge information.
nodeFile
file name of the file to contain the node information.
weighted
logical: should the exported network be weighted?
threshold
adjacency threshold for including edges in the output.
nodeNames
names of the nodes. If not given, dimnames
of adjMat
will be used.
altNodeNames
optional alternate names for the nodes, for example gene names if nodes are
labeled by probe IDs.
nodeAttr
optional node attribute, for example module color. Can be a vector or a data frame.
includeColNames
logical: should column names be included in the output files? Note that
Cytoscape can read files both with and without column names.