Description Usage Arguments Value Methods See Also Examples
regionsCoverage
computes coverage for user specified genomic
regions.
gridCoverage
evaluates the coverage on a regular grid with the
same number of points for each region (facilitating further plotting,
clustering etc).
stdGrid
standardized the coverage by diviging by the average or
maximum coverage at each region.
1 2 3 4 5 | regionsCoverage(chr, start, end, cover)
gridCoverage(cover)
stdGrid(cover, colname="maxCov")
|
chr |
Vector with chromosome names. |
start |
Vector with start position. |
end |
Vector with end position. |
cover |
For |
colname |
Name of the column in |
regionsCoverage
returns a list with two components
views |
|
viewsInfo |
|
gridCoverage
and stdGrid
return an object of class
gridCover
.
The slot cover
is a matrix with the coverage evaluated on a
grid of 500 equi-spaced points, whereas the slot viewsInfo
is the same as that returned
by regionsCoverage
(see above).
For regions between 100bp and 500bp long, a linear interpolation is
used to evaluate the coverage on the 500 points grid. For regions less
than 100bp long, NAs are returned.
Methods for regionsCoverage
:
signature(chr = "ANY", start = "ANY", end = "ANY", cover = "RleList")
Evaluates the coverage cover
at the genomic positions specified by chr
,
start
, end
.
Methods for stdGrid
:
signature(cover = "gridCover")
Standardizes the coverage evaluated on a grid (typically, as returned by
gridCoverage
) by dividing by the mean or maximum coverage.
1 | #See help(enrichedPeaks)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.