edges_to_nodes
get nodes from edges
edges_to_nodes(edges)
edges
: data.framenodes data.frame
df = data.frame(a = c("gene1","gene2","gene3"), b = c("d,f,a,b", "c,e,g", "a,b,d")) edges = interaction_to_edges(df) nodes = edges_to_nodes(edges)
interaction_to_edges
Xiaojie Sun