Description Usage Arguments Value Author(s) References Examples
Disease enrichment analysis of modules. The disease ontology databases have three types including DO: Disease Ontology database (http://disease-ontology.org/), DGN: DisGeNET database (http://www.disgenet.org/), and NCG: Network of Cancer Genes database (http://ncg.kcl.ac.uk/).
1 2 | moduleDEA(Modulelist, OrgDb = "org.Hs.eg.db", ont = "DO",
padjustvaluecutoff = 0.05, padjustedmethod = "BH")
|
Modulelist |
A list of miRNA sponge modules. |
OrgDb |
OrgDb |
ont |
One of "DO", and "DOLite" subontologies. |
padjustvaluecutoff |
A cutoff value of adjusted p-values. |
padjustedmethod |
Adjusted method of p-values, can select one of "holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "none". |
A list of disease enrichment analysis results.
Junpeng Zhang (https://www.researchgate.net/profile/Junpeng_Zhang3)
Yu G, Wang L, Yan G, et al. DOSE: an R/Bioconductor package for Disease Ontology Semantic and Enrichment analysis. Bioinformatics, 2015, 31(4):608-609.
1 2 3 4 5 6 | # Obtain miRNA-target interaction data file "miR2Target.csv" in csv format
miR2Target <- system.file("extdata", "miR2Target.csv", package="miRsponge")
miRTarget <- read.csv(miR2Target, header=TRUE, sep=",")
miRHomologyceRInt <- spongeMethod(miRTarget, method = "miRHomology")
spongenetwork_Cluster <- netModule(miRHomologyceRInt[, 1:2])
sponge_Module_DEA <- moduleDEA(spongenetwork_Cluster)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.