Description Usage Arguments Value Author(s) See Also Examples
S3 method to plot genominator.coverage
object. Shows coverage as a function of plotting effort.
1 2 3 |
x |
An object of class |
type |
Plot type. See |
col |
Vector of plotting colors. |
draw.totals |
Logical indicating whether totals should be drawn. |
draw.legend |
Logical indicating whether legend should be drawn. |
legend.location |
Vector giving x and y coordinates of legend position. |
... |
Additional arguments for lower-level functions. |
This method is used for its side effect.
James Bullard bullard@berkeley.edu, Kasper Daniel Hansen khansen@jhsph.edu
See Genominator
vignette for more information. See also computeCoverage
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ed <- ExpData(system.file(package = "Genominator", "sample.db"),
tablename = "raw")
data("yeastAnno")
a <- computeCoverage(ed, yeastAnno, effort = 2^(5:18),
cutoff = function(x, ...) x > 1)
plot(a, lwd = 5, col = "grey")
plot(a, draw.totals = FALSE)
ygroups <- rep(c("mut", "wt"), c(2,2))
b <- computeCoverage(ed, yeastAnno, grups = ygroups,
effort = 2^(5:18), cutoff = function(x, ...) x > 1)
plot(b)
b <- computeCoverage(ed, yeastAnno, groups = ygroups,
effort = 2^(5:18), cutoff = function(x, ...) x > 3,
smooth = function(probs) {
probs = probs + min(probs[probs!=0])
probs = probs/sum(probs)
})
plot(b)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.