Description Usage Arguments Value Details Examples
get percent methylation scores from methylBase or methylBaseDB object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | percMethylation(
methylBase.obj,
rowids = FALSE,
save.txt = FALSE,
chunk.size = 1e+06
)
## S4 method for signature 'methylBase'
percMethylation(methylBase.obj, rowids = FALSE)
## S4 method for signature 'methylBaseDB'
percMethylation(
methylBase.obj,
rowids = FALSE,
save.txt = FALSE,
chunk.size = 1e+06
)
|
methylBase.obj |
a methylBase or methylBaseDB object |
rowids |
if TRUE, matrix rownames have identifiers as base/region location (default:FALSE) |
save.txt |
if TRUE, the matrix will be written to a text file, but only for methylBaseDB objects (default: FALSE) |
chunk.size |
Number of rows to be taken as a chunk for processing
the |
matrix with percent methylation values per base/region across all samples, row names would be base/region identifiers
The parameter chunk.size
is only used when working with
methylBaseDB
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
.
1 2 3 | data(methylKit)
mat=percMethylation(methylBase.obj)
head(mat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.