create_cytoscape_file: Create an edge table file for Cytoscape

Description Usage Arguments Value Examples

View source: R/cytoscape.R

Description

The returned data frame can be saved as a .csv file. Then, in Cytoscape use File -> Import -> Network -> File. Select the .csv file containing the data frame generated by this function. There will be a pop-up window. The source, interaction, and target columns should automatically be identified. Click OK.

Usage

1

Arguments

g

A 'network_plot' object. See plot_network.

Value

A data frame containing an edge table that can be saved as a .csv file to be used in Cytoscape.

Examples

1
2
3
4
5
6
7
nw <- random_network(10)
g <- plot(nw)
nw_plot_cytoscape <- create_cytoscape_file(g)

# Save the edge table in a .csv file to be used in cytoscape.
write.table(nw_plot_cytoscape, file.path(tempdir(), "file_name.csv"), 
            sep = ",", row.names = FALSE, col.names = TRUE, quote = FALSE)

SeqNet documentation built on July 9, 2021, 9:08 a.m.