interaction_to_edges
split interactions by sep paramter,return edges data.frame
interaction_to_edges(df, a = 1, b = 2, sep = ",")
df
: interactions data.framea
: column to replicateb
: column to splitsep
: a character string to separate b columna new data.frame with two column ,one interaction by one rows
df = data.frame(a = c("gene1","gene2","gene3"), b = c("d,f,a,b", "c,e,g", "a,b,d")) interaction_to_edges(df)
edges_to_nodes
Xiaojie Sun