mi4limma | R Documentation |
This function performs hierarchical differential analysis using a moderated t-test statistic, which accounts for multiple imputation variability if applicable.
mi4limma(qData, sTab, VarRubin, comp.type = "OnevsOne", robust = FALSE)
qData |
A matrix of quantitative data, without any missing values. It
should be the averaged matrix from the array resulting from
|
sTab |
The experimental matrix, also corresponding to the pData function of MSnbase. |
VarRubin |
A numerical vector, resulting from |
comp.type |
A string that corresponds to the type of comparison. Values are: 'anova1way', 'OnevsOne' and 'OnevsAll'; default is 'OnevsOne'. |
robust |
logical, should the estimation of df.prior and var.prior be robustified against outlier sample variances? (as in limma's eBayes) |
A list of two dataframes : logFC and P_Value. The first one contains the logFC values of all the comparisons (one column for one comparison), the second one contains the pvalue of all the comparisons (one column for one comparison). The names of the columns for those two dataframes are identical and correspond to the description of the comparison.
Adapted by Marie Chion, from limmaCompleteTest
of the
DAPAR
package by Hélène Borges, Thomas Burger,
Quentin Giai-Gianetto and Samuel Wieczorek.
M. Chion, Ch. Carapito and F. Bertrand (2021). Accounting for multiple imputation-induced variability for differential analysis in mass spectrometry-based label-free quantitative proteomics. \Sexpr[results=rd]{tools:::Rd_expr_doi("doi:10.1371/journal.pcbi.1010420")}.
set.seed(2016)
data(qData)
data(sTab)
fit.limma <- mi4limma(qData, sTab, diag(1,2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.