Description Usage Arguments Details Value See Also Examples
View source: R/createBipartiteNet.R
createBipartiteNet
takes as input the output table of microRNA targets from mirDIP, and generates the microRNA-gene interaction network.
1 2 3 4 5 6 7 | createBipartiteNet(
miRNAs,
filename,
layout = layout_nicely,
size.gene = 7,
size.miR = 3
)
|
miRNAs |
The output table from mirDIP. |
filename |
The desired name of the files storing |
layout |
The layout function to apply to a graph, refer to |
size.gene |
The size of the circles representing genes. |
size.miR |
The size of the squares representing microRNAs. |
This function generates a bipartite network and plots the network out with two classes of vertices of different colors and shapes.
Two rda files storing 1) the microRNA-gene interaction network object and 2) the largest connected subnetwork. A plot of the largest connected subnetwork in PDF.
igraph
for all available layouts.
1 | createBipartiteNet(miRNAs, filename = 'Example_network', layout = layout_nicely, size.gene = 7, size.miR = 3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.