show | R Documentation |
This is a function that tests for global differences between groups of distributions which asses whether global normalization methods such as quantile normalization should be applied. This function defines the quantro class and constructor.
quantro( object, groupFactor = NULL, B = 0, qRange = NULL, useMedianNormalized = TRUE, verbose = TRUE )
object |
an object which is inherited from an
|
groupFactor |
a group level factor associated with
each sample or column in the |
B |
number of permutations to assess statistical significance
in a permutation test. Default |
qRange |
the range of quantiles to consider. Default is
|
useMedianNormalized |
TRUE/FALSE argument specifying if the median normalized data should be used or not as input to test for global differences between distributions. Default is TRUE. |
verbose |
TRUE/FALSE argument specifying if verbose messages should be returned or not. Default is TRUE. |
Quantile normalization is one of the most widely used normalization tools for data analysis in genomics. Although it was originally developed for gene expression microarrays it is now used across many different high-throughput applications including RNAseq and ChIPseq. The methodology relies on the assumption that observed changes in the empirical distribution of samples are due to unwanted variability. Because the data is transformed to remove these differences it has the potential to remove interesting biologically driven global variation. Therefore, applying quantile normalization, or other global normalization methods that rely on similar assumptions, may not be an appropriate depending on the type and source of variation.
This function can be used to test a priori to the data analysis whether
global normalization methods such as quantile normalization should be
applied. The quantro
function uses the raw unprocessed high-throughput
data to test for global differences in the distributions across a set of groups.
The quantro
function will perform two tests:
1. An ANOVA to test if the medians of the distributions are different across groups. Differences across groups could be attributed to unwanted technical variation (such as batch effects) or real global biological variation. This is a helpful step for the user to verify if there is some unaccounted technical variation.
2. A test for global differences between the distributions across groups.
The main output is a test statistic called quantroStat
. This test
statistic is a ratio of two variances and is similar to the idea of ANOVA.
The main idea of the test is to compare the variability of distributions
within the groups to the variability of distributions between the groups.
If the variance between the groups is sufficiently larger than the variance
within the groups, quantile normalization may not be an appropriate
normalization technique depending on the source of variation
(technical or biological variation). As a default, we perform this test on
after a median normalization, but this option may be changed.
To assess the statistical significance of quantroStat
, we use
permutation testing. To perform a permutation test, set B
to the
number of permutations which will create a null distribution. If the number
of samples is large, this number can be a large number such as 1000. This
step can be very slow, but a parallelization has been implemented
throught the foreach
package. Register the number of cores using
the doParallel
package.
See the vignette for more details.
A quantro
S4 class object
summary |
Returns a list of three elements related to a summary of the experiment: (1) the number of groups (nGroups), (2) total number of samples (nTotSamples), (3) number of samples in each group (nSamplesinGroups). |
B |
Number of permutations for permutation testing. |
anova |
ANOVA to test if the medians of the distributions (averaged across groups) are different across groups. |
quantroStat |
A test statistic which is a ratio of the mean squared error between groups of distributions to the mean squared error within groups of distributions (psuedo F-statistic). |
quantroStatPerm |
If |
quantroPvalPerm |
If |
library(minfi) data(flowSorted) p <- getBeta(flowSorted, offset = 100) pd <- pData(flowSorted) qtest <- quantro(object = p, groupFactor = pd$CellType)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.