sigtestMTC: Elimination of nonsignificant edges by application of a...

Description Usage Arguments Details Value References See Also Examples

View source: R/sigtestMTC.R

Description

sigtestMTC takes a data set as input and computes the mutual information matrix in which the nonsignificant elements are eliminated by a multiple testing correction - see details.

Usage

1
sigtestMTC( data, alpha, itnum, methodsig="BH")

Arguments

data

Data set where rows correspond to variables (e.g. genes) and columns to samples.

alpha

Significance level

itnum

Number of iterations to resample data to estimate sampling distribution.

methodsig

A procedure to perform a multiple testing correction, either controling the false discovery rate (FDR) or the family-wise error. Available option are "holm", "hochberg", "hommel", "bonferroni", "BH", "BY".

Details

The data set is resampled for each iteration and at the end the sampling distribution is obtained.

Value

sigtestMTC returns an environment res that contains the new MI matrix, res$Inew, that is obtained after the elimination of nonsignificant elements with a MTC procedure. For advanced users, who are able to write code in R, we provided the variables obtained in the function so that one might want to make further analysis without running the function again. Please see the source code for the additional return values of the environment res.

References

G. Altay, F. Emmert-Streib, "Inferring the conservative causal core of gene regulatory networks", BMC Systems Biology (2010) 4:132.

See Also

makemim, copula, c3, sigtestp

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(expdata)

data(truenet)

alpha <- 0.001

itnum <-2

res <- sigtestMTC( expdata, alpha, itnum, methodsig="BH")

net <- c3(res$Inew)  # regulatory network inferred (non zero elements stand for links of
		# the predicted network)

scores <- checknet(net,truenet)

c3net documentation built on May 2, 2019, 5:20 p.m.

Related to sigtestMTC in c3net...