tk.browse | R Documentation |
The browsePlot
function produces an usual R plot from a drawable
inheriting object list, at specific coordinates in the genome.
The tk.browse
function summons a TCL-TK interface to navigate through the whole genome, relying on browsePlot
for the plotting.
The former may be called directly to automatically export views from the genome browser, the latter is more suited to an interactive browsing with frequent coordinate jumps.
tk.browse(drawables = drawable.list(), blocking = FALSE, updateLimit = 0.4,
png.height = NA, png.res = 100, png.file = tempfile(fileext=".png"),
panelWidth = "5 cm", panel = NA)
browsePlot(drawables, chrom = NA, start = NA, end = NA, customLayout = FALSE,
xaxt = "s", xaxm = 1.5, panelWidth = "5 cm", panelSide = "left", panel = NA, ...)
drawables |
A |
blocking |
Single logical value, whether to wait for the interface window to be closed before unfreezing the R console. The |
updateLimit |
Single numeric value, minimal time (in seconds) between two image updates when move or zoom key are continuously pressed. This is used to limit zoom and move speed on fast computers. |
png.height |
Single integer value, the height of the display in pixels. Default value is to adapt the display to the size of the window, taller displays will require the user to use the scrollbar on the right of the display. |
png.res |
Single integer value, the resolution of the plot in Pixels Per Inches. Passed to |
png.file |
Single character value, the path to the PNG file that is displayed in the main window. The default behavior is to hide it in a temporary location, however you can define this argument to have an easier access to the images displayed in Rgb (the image will be replaced each time Rgb refresh its display). |
panelWidth |
Single value, the width of the panel displays on the left of the tracks, if any is to be plotted. This is handled by the |
panelSide |
Single character value ("left" or "right"), the side on which to plot the panels, if any. Note that |
panel |
Single logical value, wheter to force a panel to be displayed or to not be displayed. Default value of |
chrom |
Single character value, the chromosome to plot. |
start |
Single integer value, the left boundary of the window to plot. |
end |
Single integer value, the right boundary of the window to plot. |
customLayout |
Single logical value, whether to organize the various plot or not. If |
xaxt |
X axis showing (see |
xaxm |
Minimal bottom margin for the last track (see |
... |
Further arguments are passed through to the |
tk.browse
invisibly returns the drawables
argument (See the 'Typing R commands while browsing' section above).
browsePlot
invisibly returns the par
function output for the last track plot, as it is used by tk.browse
.
The left upper panel can be used to jump to specific coordinates, defined by a chromosome name, a starting position and an ending position (as floating point numerics in millions of base pairs.
The left and right arrow keys may be used to shift the window to the corresponding side. The page-up and page-down keys can be used to switch chromosome, without changing genomic numeric position.
The up and down arrow keys, as well as the vertical mouse wheel, may be used to zoom in or out on the current location.
A zoom can also be achieved with a mouse drag on the region to investigate : maintain a left click on the position to use as the new left boundary, and release the click at the position of the new right boundary.
The plot area size is defined by hscale
and vscale
. During interactive browsing, resize the browser window and use the "r" key to adjust the plot area to the window size.
tk.browse
returns the drawable.list
objects it uses to store currently browsed data. As it is a reference class object, the same memory location is shared by tk.browse
and the returned object, so updates (like track addition or edition) made by tk.browse
will impact the object in the R Command Line Interface (CLI), and updates made via R commands will impact the current tk.browse
session.
Some sub-interfaces (like information pop-ups and track selection panels) may freeze the R command prompt while opened, make sure to have only the tk.browse
main window opened when typing R commands.
Notice some operating systems (including Windows) restrain users to type R commands while a tcl-tk window is opened, or seems to be instable while doing so. Setting blocking
to TRUE
will enforce this behavior, keeping users from typing commands while tk.browse
is running.
Sylvain Mareschal
singlePlot
, drawable.list
, drawable
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.