Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/chrom.barplot.R
Barplot of numbers (or fractions) of reads (and targets) falling on each chromosome
1 | chrom.barplot(reads, targets, plotchroms, col = c("darkgreen", "orange"), ylab, legendpos = "topright", ...)
|
reads |
|
targets |
Optional |
plotchroms |
character vector specifying the chromosomes that shall be included in the plot (and their desired order) |
col |
color(s) of the bars |
ylab |
y-axis label |
legendpos |
Position of the legend. String from the list "bottomright", "bottom", "bottomleft",
"left", "topleft", "top", "topright", "right" and "center". Ignored if |
... |
graphical parameters passed to |
If targets
is not specified, absolute read counts per chromosome are shown in the barplot.
If targets
is provided, fractions of reads and targets are shown. For reads, this is the
fraction within the total number of reads (since reads are expected to have all the same length).
In contrast, for the targets, the fraction of targeted bases on each chromosome is calculated.
Since targets might vary in length it is reasonable to account for the actual target sizes instead
of considering merely numbers of targets per chromosome.
Barplot of reads and optionally targets per chromosome.
Manuela Hummel m.hummel@dkfz.de
1 2 3 4 5 6 7 8 | ## get reads and targets
exptPath <- system.file("extdata", package="TEQC")
readsfile <- file.path(exptPath, "ExampleSet_Reads.bed")
reads <- get.reads(readsfile, idcol=4, skip=0)
targetsfile <- file.path(exptPath, "ExampleSet_Targets.bed")
targets <- get.targets(targetsfile, skip=0)
chrom.barplot(reads, targets)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.