getCommonDEGenes | R Documentation |
Get a list of common significant DE genes from multiple DE Analysis results.
getCommonDEGenes(
DEResults,
pThreshold = 0.05,
useFDR = TRUE,
stat = "logFC",
statThreshold = 0
)
DEResults |
A list of data frames with the results of DE analysis. |
pThreshold |
The p-value threshold to determine if a gene is differentially expressed. |
useFDR |
Use the FDR adjusted p-value instead of the nominal p-value. |
stat |
The additional statistics column to use for filtering differentially expressed genes. |
statThreshold |
The absolute value of the statistic threshold to use for filtering differentially expressed genes. Default is 0, which means no filtering. |
A data frame wtih three columns: ID (Entrez IDs), Symbol and Description
library(RCPA)
library(SummarizedExperiment)
affyDEExperiment <- loadData("affyDEExperiment")
agilDEExperiment <- loadData("agilDEExperiment")
RNASeqDEExperiment <- loadData("RNASeqDEExperiment")
DEResults <- list(
"Affymetrix - GSE5281" = rowData(affyDEExperiment),
"Agilent - GSE61196" = rowData(agilDEExperiment),
"RNASeq - GSE153873" = rowData(RNASeqDEExperiment)
)
commonDEGenes <- RCPA::getCommonDEGenes(DEResults)
print(head(commonDEGenes))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.