getMetDEMeta | R Documentation |
Finds columns in differential expression table for metabolites required for gatom analysis
getMetDEMeta(
met.de.raw,
met.db,
idColumn = NULL,
idType = NULL,
pvalColumn = NULL,
logPvalColumn = NULL,
log2FCColumn = NULL,
signalColumn = NULL
)
met.de.raw |
A table with differential expression results, an object convertable to data.frame. |
met.db |
Metabolite database |
idColumn |
Specifies column name with metabolite identifiers. |
idType |
Specifies type of metabolite IDs (one of the supported by annotation). |
pvalColumn |
Specifies column with p-values. |
logPvalColumn |
Specifies column with log p-values, if there is no such column one will be generated automatically. |
log2FCColumn |
Specifies column with log2-fold changes. |
signalColumn |
Specifies column with identifier of the measured entity Could be NULL (automatic, set from based on pval and log2FC columns), character (column name), or function (evaluated in a scope of original data frame) |
object with prepared columns for the analysis for metabolite data
data("met.kegg.dbEx")
data("met.de.rawEx")
de.meta <- getMetDEMeta(met.de.rawEx, met.db = met.kegg.dbEx)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.