Description Usage Arguments Value Author(s) Examples
The purpose is to identify interesting interactions terms for our model. Assuming the design matrix to be binary, the interaction term between two variables X1 and X2 is 1, if X1=1 AND X2=1 (zero, otherwise). The function computes the relative overlap between all pairs of variables X1 and X2 via the Tanimoto-Jaccard index. Variable pairs with cutoff.lower < Tanimoto-Jaccard < cutoff.upper are considered interesting candidates.
1 | proposeInteractions(affinities, cutoff.lower=0.1, cutoff.upper=0.8)
|
affinities |
original regulator-target gene network |
cutoff.lower |
lower range for Tanimoto-Jaccard index |
cutoff.upper |
upper range for Tanimoto-Jaccard index |
A list of the same format as affinities$TF and affinites$miRNA: Each list entry corresponds to the intersection of two target gene sets.
Holger Froehlich
1 2 3 | # artificial data
data(humanNetworkSimul)
affinities.int = proposeInteractions(affinities2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.