RankedList | R Documentation |
Class containing parameterized ranked gene lists.
RankedList(object, ...)
## S4 method for signature 'DESeqAnalysis'
RankedList(
object,
keyType = c("geneName", "ensemblGeneId", "ncbiGeneId"),
value = c("stat", "log2FoldChange"),
proteinCodingOnly = FALSE
)
## S4 method for signature 'DESeqResults'
RankedList(
object,
rowRanges,
keyType = c("geneName", "ensemblGeneId", "ncbiGeneId"),
value = c("stat", "log2FoldChange"),
proteinCodingOnly = FALSE
)
## S4 method for signature 'FgseaList'
RankedList(object)
object |
Object. |
... |
Additional arguments. |
keyType |
'character(1). Gene identifier format:
|
value |
Currently supported:
|
proteinCodingOnly |
|
rowRanges |
|
RankedList
.
Multiple gene IDs can map to a gene symbol (e.g. Homo sapiens HGNC names).
In this event, we're averaging the values using mean()
internally.
Updated 2023-03-01.
data(deseq, package = "DESeqAnalysis")
data(fgsea)
## DESeqAnalysis ====
object <- deseq
rl <- RankedList(object)
print(rl)
## FgseaList ====
object <- fgsea
rl <- RankedList(object)
print(rl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.