Description Usage Arguments Value Author(s) References Examples
'makeBed()' imports the output from 'ZIMHMM()' and a RangedSummarizedExperiment object dataset to create a BED file to be used in downstream analyses.
1 |
output |
An output from 'ZIMHMM()' |
data |
A RangedSummarizedExperiment object with the same assay used in 'ZIMHMM()' |
file |
The full path and name of the output file (e.g. './example.bed') |
tracklabel |
Optional label for the track (default is 'User Track') |
A GRanges object with consensus peaks.
Pedro L. Baldoni, pedrobaldoni@gmail.com
https://github.com/plbaldoni/mixHMM
1 2 3 4 5 6 | data(Huvec)
ChIP = SummarizedExperiment::assay(Huvec,'ChIP')
Control = log(SummarizedExperiment::assay(Huvec,'Control')+1)
offset = matrix(0,nrow = nrow(ChIP),ncol = ncol(ChIP))
## Not run: output = ZIMHMM(ChIP = ChIP,Control = Control,offset = offset,random = 'intercept',control = controlPeaks())
## Not run: makeBed(output,data = Huvec,file = './H3K36me3.bed')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.