Description Usage Arguments Value Details Examples
Convert methylRaw
, methylRawDB
,
methylRawList
, methylRawListDB
,
methylBase
or methylBaseDB
object into regional
counts for a given GRanges
or GRangesList
object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | regionCounts(object,regions,cov.bases=0,strand.aware=FALSE,chunk.size,save.db,...)
## S4 method for signature 'methylRaw,GRanges'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = FALSE,
...
)
## S4 method for signature 'methylBase,GRanges'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = FALSE,
...
)
## S4 method for signature 'methylRaw,GRangesList'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = FALSE,
...
)
## S4 method for signature 'methylBase,GRangesList'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = FALSE,
...
)
## S4 method for signature 'methylRawList,GRanges'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = FALSE,
...
)
## S4 method for signature 'methylRawList,GRangesList'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = FALSE,
...
)
## S4 method for signature 'methylRawDB,GRanges'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = TRUE,
...
)
## S4 method for signature 'methylRawDB,GRangesList'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = TRUE,
...
)
## S4 method for signature 'methylRawListDB,GRanges'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = TRUE,
...
)
## S4 method for signature 'methylRawListDB,GRangesList'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = TRUE,
...
)
## S4 method for signature 'methylBaseDB,GRanges'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = TRUE,
...
)
## S4 method for signature 'methylBaseDB,GRangesList'
regionCounts(
object,
regions,
cov.bases = 0,
strand.aware = FALSE,
chunk.size = 1e+06,
save.db = TRUE,
...
)
|
object |
a NOTE: The given regions (Granges/GrangesList object) will be orderd based on chromosome and position before searching for overlaps, so the resulting methylKit object might have a different ording than expected. See details section for the reasoning of this choice and ways to still get custom ordering of regions. |
regions |
a GRanges or GRangesList object. Make sure that the GRanges objects are unique in chr,start,end and strand columns.You can make them unique by using unique() function. |
cov.bases |
number minimum bases covered per region (Default:0). Only regions with base coverage above this threshold are returned. |
strand.aware |
if set to TRUE only CpGs that match the strand of the region will be summarized. (default:FALSE) |
chunk.size |
Number of rows to be taken as a chunk for processing
the |
save.db |
A Logical to decide whether the resulting object should be saved as flat file database or not, default: explained in Details sections |
... |
optional Arguments used when save.db is TRUE
|
a new methylRaw,methylBase or methylRawList object. If strand.aware
is
set to FALSE (default). Even though the resulting object will have
the strand information of regions
it will still contain
methylation information from both strands.
The given regions (Granges/GrangesList object) will be orderd based on chromosome and position before searching for overlaps, so the resulting methylKit object might have a different ording than expected. We are doing this is to ensure that resulting output is consistent for in-memory and database based objects, as database based objects always have to be sorted to enable tabix indexing and providing fast random access.
If you to still want get a custom ordering of the output regions you can
access the single regions in any object providing your indices to the
select
or extract
functions.
The parameter chunk.size
is only used when working with
methylRawDB
, methylBaseDB
or methylRawListDB
objects,
as they are read in chunk by chunk to enable processing large-sized objects
which are stored as flat file database.
Per default the chunk.size is set to 1M rows, which should work for most
systems. If you encounter memory problems or
have a high amount of memory available feel free to adjust the chunk.size
.
The parameter save.db
is per default TRUE for methylDB objects as
methylRawDB
, methylBaseDB
or methylRawListDB
,
while being per default FALSE for methylRaw
, methylBase
or
methylRawList
. If you wish to save the result of an
in-memory-calculation as flat file database or if the size of the database
allows the calculation in-memory,
then you might want to change the value of this parameter.
1 2 3 4 5 6 7 8 9 10 11 | data(methylKit)
# get the windows of interest as a GRanges object, this can be any set
# of genomic locations
library(GenomicRanges)
my.win=GRanges(seqnames="chr21",
ranges=IRanges(start=seq(from=9764513,by=10000,length.out=20),width=5000) )
# getting counts per region
regional.methylRaw=regionCounts(object=methylRawList.obj, regions=my.win,
cov.bases=0,strand.aware=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.