makePlot.cigarOp.byCycle {QoRTs} | R Documentation |
Plots the rate at which the given CIGAR operator occurs, by read cycle.
makePlot.cigarOp.byCycle(plotter, op, r2.buffer = NULL, rate.per.million = TRUE, debugMode, singleEndMode, ...)
plotter |
A |
op |
A character string naming which cigar op to plot. Must be one of the following:
Note that makePlot.cigarOp.byCycle(plotter,"SoftClip") gives
identical results as makePlot.clipping, although the default
value for the |
r2.buffer |
Buffer space to place between the plotting of read 1 and read 2. By default this will choose a reasonable value. |
rate.per.million |
A logical value indicating whether or not to scale the y axis to rate-per-million-reads, rather than rate-per-read. Some people may find the results more readable this way, even though the plots themselves will appear the same. |
debugMode |
Logical. If TRUE, debugging data will be printed to the console. |
singleEndMode |
Logical. Determines whether the dataset consists of single-ended reads. By default this is determined from the data. Thus, this parameter should never need to be set by the user. |
... |
Arguments to be passed to methods, such as
graphical parameters (see |
x-axis: The read cycle (ie. the base-pair position in the read).
y-axis: The rate at which the bases at the given read-cycle is clipped off.
data(res,package="QoRTsExampleData");
plotter <- build.plotter.colorByGroup(res);
makePlot.cigarOp.byCycle(plotter, op = "Del");
## Starting: Deletion Rate, by read cycle plot.
## Finished: Deletion Rate, by read cycle plot.[time: 2016-01-28 16:32:54],[elapsed: 0.14 secs]
makePlot.cigarOp.byCycle(plotter, op = "Ins");
## Starting: Insertion Rate, by read cycle plot.
## Finished: Insertion Rate, by read cycle plot.[time: 2016-01-28 16:32:54],[elapsed: 0.17 secs]
makePlot.cigarOp.byCycle(plotter, op = "Splice");
## Starting: Splice Junction Rate, by read cycle plot.
## Finished: Splice Junction Rate, by read cycle plot.[time: 2016-01-28 16:32:54],[elapsed: 0.19 secs]