Description Usage Arguments Value
Gene sets inside a GeneSetDb()
are indexed by their collection,name
compound key. There is no special class to represent an individual gene set.
Instead, gene sets are returned as a data.frame, the rows of which enumerate
the features that belong to them.
When x
is a MultiGSEAResult()
, this function will append
the differential expression statistics for the individual features generated
across the contrast that defined x
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | geneSet(x, i, j, ...)
## S4 method for signature 'GeneSetDb'
geneSet(
x,
i,
j,
active.only = is.conformed(x),
with.feature.map = FALSE,
...,
collection = NULL,
name = NULL,
as.dt = FALSE
)
## S4 method for signature 'MultiGSEAResult'
geneSet(
x,
i,
j,
active.only = TRUE,
with.feature.map = FALSE,
...,
collection = NULL,
name = NULL,
as.dt = FALSE
)
|
x |
Object to retrieve the gene set from, either a |
i |
The collection,name compound key identifier of the gene set |
j |
The collection,name compound key identifier of the gene set |
... |
passed down to inner functinos |
active.only |
only look for gene sets that are "active"? Defaults to
|
with.feature.map |
If |
as.dt |
If |
a data.(frame|table)
of gene set information. If x
is a
MultiGSEAResult
object, then differential expression statistics
are added as columns to this result.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.