UpSet plot of directional enriched pathway intersections across contrasts
Source:R/AllGenerics.R, R/plotEnrichedUpset-methods.R
plotEnrichedUpset.RdUpSet plot of directional enriched pathway intersections across contrasts
Usage
plotEnrichedUpset(object, ...)
# S4 method for class 'FgseaList'
plotEnrichedUpset(object, collection, direction = c("both", "up", "down"))Arguments
- object
Object.
- collection
character(1). Gene set collection name. Typically refers toh(hallmark),c1-c7collections from MSigDb. Can obtain usingcollectionNames()onFgseaListobject.- 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
)