Description Usage Arguments Details Value See Also Examples
The genome.size slot contains the number of genes in the genome as an integer.
1 2 3 4  | ## S4 method for signature 'GeneOverlap'
getGenomeSize(object)
## S4 replacement method for signature 'GeneOverlap'
setGenomeSize(object) <- value
 | 
object | 
 A GeneOverlap object.  | 
value | 
 An integer representing genomic background.  | 
After setGenomeSize function is called, the tested Boolean label will be reset to false.
An integer representing the genome size.
1 2 3 4 5 6 7 8 9 10 11  | data(GeneOverlap)
go.obj <- newGeneOverlap(hESC.ChIPSeq.list$H3K27me3, 
                         hESC.RNASeq.list$"Exp Medium", 
                         genome.size=gs.RNASeq)
getGenomeSize(go.obj)
v.gs <- c(12e3, 14e3, 16e3, 18e3, 20e3)
setNames(sapply(v.gs, function(g) {
    setGenomeSize(go.obj) <- g
    go.obj <- testGeneOverlap(go.obj)
    getPval(go.obj)
}), v.gs)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.