UpSet plot of directional enriched pathway intersections across contrasts
Source:R/AllGenerics.R
, R/plotEnrichedUpset-methods.R
plotEnrichedUpset.Rd
UpSet plot of directional enriched pathway intersections across contrasts
Usage
plotEnrichedUpset(object, ...)
# S4 method for FgseaList
plotEnrichedUpset(object, collection, direction = c("both", "up", "down"))
Arguments
- object
Object.
- collection
character(1)
. Gene set collection name. Typically refers toh
(hallmark),c1
-c7
collections from MSigDb. Can obtain usingcollectionNames()
onFgseaList
object.- direction
character(1)
. Include"both"
,"up"
, or"down"
directions.- ...
Additional arguments.
Examples
data(fgsea)
## FgseaList ====
object <- fgsea
alphaThreshold(object) <- 0.9
collection <- collectionNames(object)[[1L]]
plotEnrichedUpset(
object = object,
collection = collection
)