aracne.m | R Documentation |
A function that implements the ARACNE algorithm for the reconstruction of gene interaction networks (multiplicative model).
aracne.m(mi, tau=0.15)
mi |
matrix of the mutual information. |
tau |
a positive numeric value used to remove the weakest edge of each triple of nodes. |
This algorithm considers each triple of edges independently and removes the weakest one if
MI(i;j) < MI(j;k) * (1 - \tau
and
MI(i;j) < MI(i;k) * (1 - \tau)
By default, the function uses all the available cores. You can
set the actual number of threads used to N by exporting the
environment variable OMP_NUM_THREADS=N
.
A square weighted adjacency matrix of the inferred network.
Adam A. Margolin, Ilya Nemenman, Katia Basso, Chris Wiggins, Gustavo Stolovitzky, Riccardo Dalla Favera, and Andrea Califano. Aracne : An algorithm for the reconstruction of gene regulatory networks in a mammalian cellular context. BMC Bioinformatics, 2006.
aracne.a
clr
mrnet
mat <- matrix(rnorm(1000), nrow=10)
mi <- knnmi.all(mat)
grn <- aracne.m(mi, 0.15)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.