Gene set
Arguments
- object
Object.
- collection
character(1)
. Gene set collection name. Typically refers toh
(hallmark),c1
-c7
collections from MSigDb. Can obtain usingcollectionNames()
onFgseaList
object.- set
character(1)
. Gene set name, in a definedcollection
. For example,"HALLMARK_ADIPOGENESIS"
.- ...
Additional arguments.
Examples
data(fgsea)
## FgseaList ====
object <- fgsea
collection <- collectionNames(object)[[1L]]
set <- geneSetNames(object = object, collection = collection)[[1L]]
x <- geneSet(
object = object,
collection = collection,
set = set
)
head(x)
#> [1] "FABP4" "ADIPOQ" "PPARG" "LIPE" "DGAT1" "LPL"