filterGeneSets | R Documentation |
Filters gene sets through a given minimum and maximum set size.
This function filters the input gene sets according to a given minimum and maximum set size.
## S4 method for signature 'list'
filterGeneSets(gSets, minSize = 1, maxSize = Inf)
## S4 method for signature 'GeneSetCollection'
filterGeneSets(gSets, minSize = 1, maxSize = Inf)
gSets |
Gene sets given either as a |
minSize |
Minimum size. |
maxSize |
Maximum size. |
A collection of gene sets that meet the given minimum and maximum set size.
J. Guinney
Hänzelmann, S., Castelo, R. and Guinney, J. GSVA: Gene set variation analysis for microarray and RNA-Seq data. BMC Bioinformatics, 14:7, 2013.
computeGeneSetsOverlap
geneSets <- list(set1=as.character(1:4), set2=as.character(4:10))
filterGeneSets(geneSets, minSize=5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.