bonferroni: Bonferroni correction

Description Usage Arguments Examples

View source: R/metaanalysis.R

Description

Bonferroni correction for collapsing probe sets to genes.

Usage

1

Arguments

x

P-values of probes that map to a single gene.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (x) 
{
    corrected.p.val <- length(x) * min(x, na.rm = TRUE)
    if (corrected.p.val == Inf) 
        return(NA)
    else if (corrected.p.val > 1) 
        return(1)
    return(corrected.p.val)
  }

cchng/MetaAnalysis documentation built on May 29, 2019, 2:34 p.m.