This function draws each element sliced from a track as a separate podium, defined by several start and end genomic coordinates. This representation may prove useful to represent results of Minimal Common Regions from algorithms such as SRA or GISTIC (see the 'cghRA' package).
draw.steps(slice, start, end, startColumns = "start", endColumns = "end",
maxDepth = 100, label = TRUE, labelStrand = FALSE, labelCex = 1, labelSrt = 0,
labelAdj = "center", labelOverflow = TRUE, labelFamily = "sans", colorVal = "#BBBBBB",
colorFun = function() NULL, border = "#666666", cex.lab = 1, spacing = 0.1, bty = "o",
...)
A data.frame
holding the data to plot, with elements in rows and data in columns.
Single integer value, the left boundary of the window, in base pairs.
Single integer value, the right boundary of the window, in base pairs.
Character vector naming the columns in slice
to be used as step starts, from the widest to the narrowest.
Character vector naming the columns in slice
to be used as step ends, from the widest to the narrowest.
Single integer value, the maximum amount of box heights allowed on the plot to avoid overlaps (if exhausted an error message will be ploted, turning label
to FALSE
might help).
Single logical value, whether to print labels on boxes or not.
Single logical value, whether to add the strand at the end of labels or not.
Single numeric value, character expansion factor for labels.
Single numeric value, string rotation angle for labels.
'left', 'right' or 'center', the horizontal adjustement of the labels on the boxes.
Single logical value, whether to write labels on boxes too narrow to host them or not.
Single character value, the font family to use for labels ('serif', 'sans', 'mono' or 'Hershey'). 'serif' and 'sans' are not monospaced fonts, so label box sizes and collision handling might not work as expected with them.
The color to fill boxes with (as a name, an integer or an hexadecimal character description).
A function with no arguments, which returns a vector of as many colors than the slice
has rows. It can make use of any argument described on this page (including custom arguments passed via "..."), as its enclosing environment is redefined to the calling one. colorVal
must be NA
for the function to be used.
The color to fill box borders with (as a name, an integer or an hexadecimal character description).
The relative character size of x and y axis labels (default: 1). See par
.
Single numeric value, the vertical spacing between boxes, in proportion of the box height.
A character string which determined the type of box which is drawn about plots. If bty is one of "o" (the default), "l", "7", "c", "u", or "]" the resulting box resembles the corresponding upper case letter. A value of "n" suppresses the box. See par
.
Further arguments to be passed to draw.bg
.
draw.bg
, draw.boxes
, draw.hist
, draw.points
, draw.pileup
, draw.seq