Description Usage Arguments Value Examples
This function creates a geneset by feature table with geneset membership
information for a specified feature set. Only the gene sets that have
any of the features
are included.
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 28 29 30 | geneSetSummaryByGenes(
x,
features,
with.features = TRUE,
feature.rename = NULL,
...
)
## S4 method for signature 'GeneSetDb'
geneSetSummaryByGenes(
x,
features,
with.features = TRUE,
feature.rename = NULL,
...,
as.dt = FALSE
)
## S4 method for signature 'MultiGSEAResult'
geneSetSummaryByGenes(
x,
features,
with.features = TRUE,
feature.rename = NULL,
method = NULL,
max.p = 0.3,
p.col = c("padj", "padj.by.collection", "pval"),
...,
as.dt = FALSE
)
|
x |
|
features |
a character vector of featureIds |
with.features |
Include columns for |
feature.rename |
if |
a data.frame of geneset <-> feature incidence/feature matrix.
1 2 3 4 5 6 7 | vm <- exampleExpressionSet(do.voom=TRUE)
gdb <- conform(exampleGeneSetDb(), vm)
mg <- multiGSEA(gdb, vm, vm$design, 'tumor', methods=NULL)
features <- c("55839", "8522", "29087")
gsm.hit <- geneSetSummaryByGenes(gdb, features)
gsm.fid <- geneSetSummaryByGenes(mg, features, feature.rename=NULL)
gsm.sym <- geneSetSummaryByGenes(mg, features, feature.rename='symbol')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.