single_mod_enrichplot {DDPNA} | R Documentation |
single_mod_enrichplot
Description
FCS enrichment analysis of a sets of proteins in one module.
Usage
single_mod_enrichplot(module, Mod_Nam, classifiedID,
coln = "new.ID", datainf = NULL,
plot = TRUE, filename = NULL, ...)
Arguments
module |
module information which is getted in |
Mod_Nam |
the module name which module will be calculate. |
classifiedID |
a sets of protein IDs which is ordered by change value/ p value and so on. |
coln |
column name of module contains protein IDs. it could be matched with " |
datainf |
proteomic data protein ID information.
The default value is " |
plot |
a logical value indicating whether draw enrichment variation trend plot. |
filename |
the filename of plot. The default value is |
... |
Other arguments. |
Author(s)
Kefu Liu
Examples
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")
m5enrich <- single_mod_enrichplot(Module, 5, up, coln="ori.ID")