Description Usage Arguments Value Author(s) References Examples
This function create offsets for peak calling. The current implementation can output three different set of offsets: total sum of read counts (method="sum"), smoothed MA trend (method="loess", similar to csaw), or median ratio (method="ratio", similar to DESeq2).
1 | createOffset(ChIP, method = "sum", span = 0.3)
|
ChIP |
M*N matrix of ChIP read counts, where M is the number of windows in the analyzed genome and N is the number of experiments and replicates |
method |
either total sum of read counts (method="sum"), smoothed MA trend (method="loess"), or median ratio (method="ratio"). |
span |
proportion of data to be used in the smoothing (see loessFit from limma, default 0.3) |
M*N matrix of offsets
Pedro L. Baldoni, pedrobaldoni@gmail.com
https://github.com/plbaldoni/ZIMHMM
1 2 3 | data(Huvec)
ChIP = SummarizedExperiment::assay(Huvec,'ChIP')
offset = createOffset(ChIP,method="loess")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.