Learn R Programming

birte (version 1.8.1)

proposeInteractions: Propose possible regulator-regulator interactions that could be worthwhile to be tested into the biRte model.

Description

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.

Usage

proposeInteractions(affinities, cutoff.lower=0.1, cutoff.upper=0.8)

Arguments

affinities
original regulator-target gene network
cutoff.lower
lower range for Tanimoto-Jaccard index
cutoff.upper
upper range for Tanimoto-Jaccard index

Value

A list of the same format as affinities$TF and affinites$miRNA: Each list entry corresponds to the intersection of two target gene sets.

Examples

Run this code
# artificial data
data(humanNetworkSimul)
affinities.int = proposeInteractions(affinities2)

Run the code above in your browser using DataLab