Description Usage Arguments Value Examples
This function will visualize co-expression gene network based on selected two biclusters. The nodes represent the gene module network from the selected bicluster. The size of the nodes indicates the degree of presence. The thickness of edges indicates the value of the correlation coefficient.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | PlotModuleNetwork(object, ...)
.plotmodulenetwork(
object = NULL,
method = "spearman",
node.col = "orange",
N.bicluster = c(1, 5),
cutoff.neg = -0.8,
cutoff.pos = 0.8,
layout = "circle",
node.label = TRUE,
node.label.cex = 1
)
## S4 method for signature 'IRISFGM'
PlotModuleNetwork(
object = NULL,
method = "spearman",
node.col = "orange",
N.bicluster = c(1, 5),
cutoff.neg = -0.8,
cutoff.pos = 0.8,
layout = "circle",
node.label = TRUE,
node.label.cex = 1
)
|
object |
Input IRIS-FGM object. |
... |
other arguments passed to methods |
method |
Should be a statistical method to calculate edge weight based on expression data. It can be either "Spearman" (default) or "Pearson." |
node.col |
Should a color name (or color code) for nodes |
N.bicluster |
Should be the two numbers of biclsuters. |
cutoff.neg |
Should be a cutoff to show a negative correlation between two nodes (default: -0.8). |
cutoff.pos |
Should be a cutoff to show a positive correlation between two nodes (default: 0.8). |
layout |
Should be one type of layouts to show nodes' arrangement, including 'linear', 'star', 'circle'(default), 'gem', 'dh', 'graphopt', 'grid', 'mds', 'randomly', 'fr', 'kk', 'drl', 'lgl'. |
node.label |
Should be logic to show the nodes' label (default: TRUE). |
node.label.cex |
Should be a number to control the label size. |
It will generate co-expression network based on selected bicluster (can be one or multiple.)
1 2 3 4 5 6 7 8 | ## Not run:
object <- PlotModuleNetwork(object = NULL,
N.bicluster = c(1,5),
Node.color = '#E8E504',
cutoff=0.7,
node.label.cex = 1)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.