powered by
Extracts the list of directed edges (links) from a given Boolean network.
extract_edges(net, node_names = TRUE)
A data frame where each row corresponds to a directed edge of the network and the two columns indicate the source and destination of each edge.
A network structure of the class BooleanNetwork from the BoolNet package.
BooleanNetwork
BoolNet
If TRUE (default), the edges are returned by node names; otherwise, the edges are returned by node indices.
Since Boolean networks have a directed graph topology, this function extracts the list of directed edges from a given Boolean network.
# Load the example network data(lac_operon_net) # Extract edges from the network edges <- extract_edges(lac_operon_net)
Run the code above in your browser using DataLab