R/differential_analysis.R
exposure_differential_analysis.Rdexposure_differential_analysis is used to run
differential analysis on the signature exposures of annotated samples within
the musica_result object.
exposure_differential_analysis(
musica_result,
annotation,
method = c("wilcox", "kruskal", "glm.nb"),
group1 = NULL,
group2 = NULL,
...
)A musica_result object
Column in the sample_annotations table of the
musica_result object
Any method in c("wilcox", "kruskal", "glm.nb")
used to perform differential analysis on signature exposures
character vector used in the Wilcox test. Elements in
group1 are compared to elements in group2. This is
required for annotation with more than 2 levels.
character vector used in the Wilcox test. Elements in
group2 are compared to elements in group1. This is
required for annotation with more than 2 levels.
Additional arguments to be passed to the chosen method
A matrix containing statistics summarizing the analysis dependent on the chosen method
data("res_annot")
exposure_differential_analysis(res_annot, "Tumor_Subtypes", method="wilcox")
#> Signature Group1 Group2 Pr(>|z|) (fdr)
#> 1 Signature1 Breast Lung 0.114285714285714 0.342857142857143
#> 2 Signature2 Breast Lung 0.228571428571429 0.342857142857143
#> 3 Signature3 Breast Lung 0.628571428571429 0.628571428571429