find_enrich_colnames | R Documentation |
Find enrichment colnames
find_enrich_colnames(
x,
keyColname = c("ID", "Name", "pathway", "itemsetID", "Description"),
nameColname = c("Name", "pathway", "Description", "itemsetID", "ID"),
descriptionColname = c("Description", "Name", "Pathway", "ID"),
geneColname = c("geneID", "geneNames", "Genes"),
countColname = c("gene_count", "count", "geneHits"),
geneRatioColname = c("GeneRatio", "^Ratio"),
pvalueColname = c("padjust", "p.adjust", "adjp", "padj", "qvalue", "qval", "q.value",
"pvalue", "p.value", "pval", "FDR"),
directionColname = c("activation.z.{0,1}score", "z.{0,1}score"),
pathGenes = c("setSize", "pathGenes", "Count"),
geneHits = c("Count", "geneHits", "gene_count"),
verbose = FALSE,
...
)
x |
|
keyColname |
|
nameColname |
|
descriptionColname |
|
geneColname |
|
countColname |
|
geneRatioColname |
|
pvalueColname |
|
directionColname |
|
pathGenes |
|
geneHits |
|
verbose |
|
... |
additional arguments are ignored. |
character
of recognized colnames named by the type
of column, using NA
for any column types not found.
list
named by each column name argument, with one character
value or NULL
in each entry.
newborn_txt <- system.file("extdata",
"Newborns-IPA.txt",
package="multienrichjam");
ipa_dfs <- importIPAenrichment(newborn_txt);
find_enrich_colnames(ipa_dfs[[1]])
er <- enrichDF2enrichResult(ipa_dfs[[1]])
find_enrich_colnames(er)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.