Description Usage Arguments Author(s) Examples
Enrichment analysis of a sets of proteins in all modules.
1 2 | Module_Enrich(module, classifiedID, enrichtype = "FCS",
coln = "new.ID", datainf = NULL, p.adj.method = "BH")
|
module |
module information which is getted in |
classifiedID |
a sets of protein IDs which is ordered by change value/ p value and so on. |
enrichtype |
enrichment method.
This must be (an abbreviation of) one of the strings " |
coln |
column name of module contains protein IDs. it could be matched with " |
datainf |
proteomic data protein ID information.
The default value is " |
p.adj.method |
p adjust methods of multiple comparisons.
it can seen in |
Kefu Liu
1 2 3 4 5 6 7 8 9 10 11 12 13 | rm(list = ls())
library(DDPNA)
data(net)
data(imputedData)
data <- imputedData
logD <- data$log2_value
rownames(logD) <- data$inf$ori.ID
group <- gsub("[0-9]+","", colnames(logD))
Module <- Module_inf(net, data$inf)
up <- changedID(logD, group, vs.set2 = "ad",vs.set1 = "ctl",
rank = "foldchange",anova = FALSE, Padj = "none",cutoff = 1,
datatype = "log2",fctype = "up")
FCSenrich <- Module_Enrich(Module, up, coln="ori.ID")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.