View source: R/All-functions.R
preprocessInputData | R Documentation |
Function to extract Gene IDs, logFoldChange, and p-val values from a DESeqResults object or data frame. Gene IDs are translated to ENTREZ IDs, if possible, and the resultant data frame is sorted accordint to decreasing log2(Fold Change). Translating gene IDs from mouse to their equivalent human genes is avaible using the variable "mode".
preprocessInputData(inputData, mode = "h2h")
inputData |
DESeqResults object or data frame. In all cases must include gene IDs. Data frame inputs should include 'pvalue' and 'log2FoldChange' as well. |
mode |
Specify the organism used: 'h2h' for homo sapiens gene IDs, 'm2m' for mouse gene IDs, or 'm2h' to get the corresponding human gene IDs from a mouse input. |
A table containing Entrez Gene IDs, LogFoldChange and p-val values (both raw p-value and fdr adjusted p-value), sorted by log2FoldChange.
data('hypoxia_DESeq',package='TFEA.ChIP')
preprocessInputData( hypoxia_DESeq )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.