Learn R Programming

netbenchmark (version 1.4.2)

c3net.wrap: c3net wrapper function

Description

Default wrapper function for the C3net network inference algorithm

Usage

c3net.wrap(data)

Arguments

data
Numeric matrix with the microarray dataset to infer the network. Columns contain variables and rows contain samples.

Value

  • c3net.wrap returns a matrix which is the weighted adjacency matrix of the network inferred by c3net algorithm. The Mutual Information threshold is set to 0 - see c3net.

Details

The Conservative Causal Core NETwork (C3NET) consists of two main steps. The first step is the elimination of non-significant edges, and the second step selects for each gene the edge among the remaining ones with maximum mutual information value. C3NET does not aim at inferring the entire network underlying gene regulation but mainly tries to recover the core structure.

References

Altay, G"{o}kmen, and Frank Emmert-Streib. "Inferring the conservative causal core of gene regulatory networks." BMC Systems Biology 4.1 (2010): 132.

See Also

netbenchmark, evaluate, c3net

Examples

Run this code
# Data
    data <- grndata::getData(datasource.name = "toy",FALSE)
    # Inference
    net <- c3net.wrap(data)

Run the code above in your browser using DataLab