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)
|
Loading required package: BiocGenerics
Loading required package: parallel
Attaching package: 'BiocGenerics'
The following objects are masked from 'package:parallel':
clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
clusterExport, clusterMap, parApply, parCapply, parLapply,
parLapplyLB, parRapply, parSapply, parSapplyLB
The following objects are masked from 'package:stats':
IQR, mad, sd, var, xtabs
The following objects are masked from 'package:base':
Filter, Find, Map, Position, Reduce, anyDuplicated, append,
as.data.frame, basename, cbind, colMeans, colSums, colnames,
dirname, do.call, duplicated, eval, evalq, get, grep, grepl,
intersect, is.unsorted, lapply, lengths, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, rank, rbind,
rowMeans, rowSums, rownames, sapply, setdiff, sort, table, tapply,
union, unique, unsplit, which, which.max, which.min
Loading required package: IRanges
Loading required package: S4Vectors
Loading required package: stats4
Attaching package: 'S4Vectors'
The following object is masked from 'package:base':
expand.grid
Loading required package: Rsamtools
Loading required package: GenomeInfoDb
Loading required package: GenomicRanges
Loading required package: Biostrings
Loading required package: XVector
Attaching package: 'Biostrings'
The following object is masked from 'package:base':
strsplit
Attaching package: 'Rsamtools'
The following object is masked from 'package:BiocGenerics':
path
Loading required package: hwriter
Warning message:
replacing previous import 'BiocGenerics::path' by 'Rsamtools::path' when loading 'TEQC'
[1] "read 19546 sequenced reads"
[1] "read 50 (non-overlapping) target regions"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.