getList: Accessors for the "listA" and "listB" slots of GeneOverlap...

Description Usage Arguments Details Value See Also Examples

Description

The listA and listB slots hold the gene lists A and B as character vectors.

Usage

1
2
3
4
5
6
7
8
## S4 method for signature 'GeneOverlap'
getListA(object)
## S4 replacement method for signature 'GeneOverlap'
setListA(object) <- value
## S4 method for signature 'GeneOverlap'
getListB(object)
## S4 replacement method for signature 'GeneOverlap'
setListB(object) <- value

Arguments

object

A GeneOverlap object.

value

A character vector representing gene names.

Details

After setListX function is called, the tested Boolean label will be reset to false.

Value

A character vector representing gene list A/B.

See Also

GeneOverlap-class, newGeneOverlap

Examples

1
2
3
4
5
6
7
8
9
data(GeneOverlap)
go.obj <- newGeneOverlap(hESC.ChIPSeq.list$H3K4me3, 
                         hESC.ChIPSeq.list$H3K27me3, 
                         genome.size=gs.RNASeq)
go.obj <- testGeneOverlap(go.obj)
head(getListB(go.obj))
getTested(go.obj)  # true.
setListB(go.obj) <- hESC.ChIPSeq.list$H3K9me3
getTested(go.obj) # false.

shenlab-sinai/geneoverlap-old documentation built on May 29, 2019, 9:22 p.m.