View source: R/getGenePathways.R
getGenePathways | R Documentation |
This function will create a named vector of collapsed names of named genesets list, separated by '; '
getGenePathways(genesets)
genesets |
A named list of features in row names of dataMatrix. |
A named vector
## Read in ExpressionSet object
library(Biobase)
data(sample.ExpressionSet)
## Create dummy set of gene sets
genes <- rownames(sample.ExpressionSet)
genesetsMadeUp <- list(
GS1=genes[1:50],
GS2=genes[51:100],
GS3=genes[101:150])
head(getGenePathways(genesetsMadeUp))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.