DAcomp | R Documentation |
Compares the gene expression, pathway activation level and the function activation level of the
DAcomp( hidata, groups, expdes, g2 = NULL, path.method = "wilcoxon", node.method = "limma", fun.method = "wilcoxon", order = FALSE, paired = FALSE, adjust = TRUE, conf.level = 0.05, sel_assay = 1 )
hidata |
Either a SummarizedExperiment object or a matrix, returned by
function |
groups |
Either a character indicating the name of the column in colData
including the classes to compare, or a character vector with the class to
which each sample belongs.
Samples must be ordered as in |
expdes |
String, either an equation expression to pas to |
g2 |
String, label of the second group to be compared, if not specified
in |
path.method |
String, method to be used when comparing pathways.
Options include |
node.method |
String, method to be used when comparing nodes.
Options include |
fun.method |
String, method to be used when comparing functions.
Options include |
order |
Boolean, whether to order the results table by the
|
paired |
Boolean, whether the samples to be compared are paired.
If TRUE, function |
adjust |
Boolean, whether to adjust the p.value with Benjamini-Hochberg FDR method. Default is TRUE. |
sel_assay |
Character or integer, indicating the assay to be normalized in the SummarizedExperiment. Default is 1. |
conf_level |
Numeric, cut off for significance. Default is 0.05. |
List including comparison results for nodes, pathways and functions, if present.
data(path_vals) data(brca_design) sample_group <- brca_design[colnames(path_vals),"group"] comp <- DAcomp(path_vals, sample_group, g1 = "Tumor", g2 = "Normal")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.