geneSetName-methods: ~~ Methods for Function 'geneSetName' ~~

Description Usage Arguments Methods Author(s) See Also Examples

Description

This function returns the name of the corresponding GeneSet or a list of names for a GeneSetCollection. This method is applicable for all three approximation methods.

Usage

1
geneSetName(object)

Arguments

object

An object of type npGSEAResultNorm, npGSEAResultBeta, npGSEAResultChiSq, npGSEAResultNormCollection, npGSEAResultBetaCollection, or npGSEAResultChiSqCollection

Methods

signature(object = "npGSEAResultNorm")

Returns a the name of the gene set from a npGSEAResultNorm object

signature(object = "npGSEAResultBeta")

Returns a the name of the gene set from a npGSEAResultBeta object

signature(object = "npGSEAResultChiSq")

Returns a the name of the gene set from a npGSEAResultChiSq object

signature(object = "npGSEAResultNormCollection")

Returns a list of the names of the gene sets from a npGSEAResultNormCollection objects (1 for each set)

signature(object = "npGSEAResultBetaCollection")

Returns a list of the names of the gene sets from a npGSEAResultBetaCollection objects (1 for each set)

signature(object = "npGSEAResultChiSqCollection")

Returns a list of the names of the gene sets from a npGSEAResultChiSqCollection objects (1 for each set)

Author(s)

Jessica L. Larson

See Also

npGSEAResultNorm-class

Examples

1
2
3
4
5
6
7
    set.seed(15)
    yFactor <- as.factor( c(rep("treated", 5), rep("control", 5)) )
    xData <- matrix(data=rnorm(length(letters)*10) ,nrow=length(letters), ncol=10)
    rownames(xData) <- letters
    geneSetABC15 <- GeneSet(geneIds=letters[1:15], setName="setABC15")
    res <- npGSEA(x = xData, y = yFactor, set = geneSetABC15)
    geneSetName (res)

npGSEA documentation built on Nov. 8, 2020, 6:49 p.m.