readHeinzGraph {BioNet}R Documentation

Convert HEINZ output to graph

Description

Function to convert the HEINZ output to a graph object, or if the output is in matrix form, it will create a list of graphs. The function needs the node and the original network, from which the module is calculated.

Usage

readHeinzGraph(node.file, network, format=c("graphNEL", "igraph"))

Arguments

node.file

Heinz node output file.

network

Original network from which Heinz input was created.

format

Graph format of output, either igraph or graphNEL.

Value

Graph object.

Author(s)

Daniela Beisser

Examples

library(DLBCL)
data(interactome)
# precomputed Heinz output files
## Not run: lib <- file.path(path.package("BioNet"), "extdata") 
module <- readHeinzGraph(node.file=file.path(lib, "lymphoma_nodes_001.txt.0.hnz"), network=interactome, format="graphNEL");
plotModule(module);

## End(Not run)

[Package BioNet version 1.50.0 Index]