View source: R/limmaStatsFun.R
limmaStatsFun | R Documentation |
This function performs the differential expression analysis with limma including all pairwise comparisons using the condition provided
limmaStatsFun(
ID_type,
int_type,
condition_col_name,
run_id_col_name,
rep_col_name,
funDT,
returnDecideTestColumn,
conditionSeparator,
pairwise.comp = NULL,
all.comparisons = TRUE
)
ID_type |
str. Column name of feature ID, e.g. 'ProteinId' |
int_type |
str. Column name containing intensities to use for the differential expression analysis, e.g. 'log2NIntNorm' |
condition_col_name |
str. Column name for the condition of interest, e.g. 'Condition'. Used to build all pairwise comparisons. |
run_id_col_name |
str. Column name for the unique identifier of condition and replicate, e.g. 'RunId' |
rep_col_name |
str. Replicate column name. e.g. 'Replicate' |
funDT |
data.table. long table containing intensities for all proteins and samples. |
returnDecideTestColumn |
logical. If TRUE the row data of the 'CompleteIntensityExperiment' will contain the output from 'limma::decideTests'. |
conditionSeparator |
string. String used to separate up and down condition in output. |
pairwise.comp |
chr. XX In the future this will allow the possibility of including only some pairwise comparisons of interest. |
all.comparisons |
logical. TRUE to run differential expression analysis for all pairwise comparisons. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.