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)
|
[1] 21196
12000 14000 16000 18000 20000
1.000000e+00 9.999746e-01 6.039536e-05 9.006016e-24 5.589067e-51
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.