iuq {cit} | R Documentation |
Intersection/Union Q-Value
Description
Tail-area false discovery rates (FDRs) or 'q-values' are combined across multiple component tests to estimate a single q-value that represents the intersection of alternative hypotheses or the union of null hypotheses. In other words, this is an estimate of the rate at which tests called 'significant' at the specified omnibus q-value include at least one component condition that is called 'significant' due to chance alone.
Usage
iuq( qvec )
Arguments
qvec |
vector of q-values, each corresponding to a component test. |
Details
The omnibus q-value is greater than or equal to the maximum of the component q-values.
Value
A single value that represents the rate at which tests called 'significant' at the specified omnibus q-value include at least one component condition that is called 'significant' due to chance alone.
Author(s)
Joshua Millstein
References
Millstein J, Chen GK, Breton CV. 2016. cit: hypothesis testing software for mediation analysis in genomic applications. Bioinformatics. btw135. PMID: 27153715.
Examples
# component q-values
qvec = c( .1, .04, .02, .11 )
# omnibus q-value
iuq( qvec )