FgseaList | R Documentation |
Extends the functionality of fgsea::fgsea()
.
FgseaList(object, ...)
## S4 method for signature 'DESeqAnalysis'
FgseaList(
object,
keyType = c("geneName", "ensemblGeneId", "ncbiGeneId"),
value = c("stat", "log2FoldChange"),
proteinCodingOnly = FALSE,
...
)
## S4 method for signature 'DESeqResults'
FgseaList(
object,
keyType = c("geneName", "ensemblGeneId", "ncbiGeneId"),
value = c("stat", "log2FoldChange"),
rowRanges,
proteinCodingOnly = FALSE,
...
)
## S4 method for signature 'RankedList'
FgseaList(object, geneSetFiles)
object |
Object. |
... |
Additional arguments. |
keyType |
'character(1). Gene identifier format:
|
value |
Currently supported:
|
proteinCodingOnly |
|
rowRanges |
|
geneSetFiles |
|
FgseaList
.
Updated 2023-10-04.
data(deseq, package = "DESeqAnalysis")
## DESeqAnalysis ====
object <- deseq
geneSetFiles <- prepareGeneSetFiles(
dir = system.file(
"extdata",
"msigdb",
"7.0",
"msigdb_v7.0_GMTs",
package = "AcidGSEA"
)
)
fgsea <- FgseaList(
object = object,
geneSetFiles = geneSetFiles
)
print(fgsea)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.