-
Notifications
You must be signed in to change notification settings - Fork 29
Home
Creating a LocusZoom plot requires two pieces of information:
Once defined these values can be passed to the populate()
method along with a selector to identify a div, like so:
var plot = LocusZoom.populate(selector, data_sources, layout);
Note that the return value from the populate()
method, the plot, is saved out to a variable. It is advisable to do this wherever LocusZoom.js is deployed as the plot variable can be used after being populated to do all kinds of things.
A Plot is an instance of LocusZoom, returned by the populate()
method. A plot has a layout and various supported methods.
A Panel is a subdivided area of a plot. Panels contain graph features such as titles and axes, but not actual data. Panels occupy the full width the of the plot and are stacked vertically along the y-axis in the order they are added unless directed differently by their layouts.
A Data Layer is a layer within a panel for representing data. Data layers are stacked depth-wise along the z-axis in the other they are added unless directed differently by their layouts.
A Toolbar is an HTML element that can contain information or user interface widgets relevant to a plot. Toolbars can be attached to the plot as a whole or to individual panels. They are described with their own layouts nested within the layouts of the parent plot or panel.
A Legend is an SVG element belonging to a panel that annotated categories of data shown on the underlying data layers. Legends are described in general terms as a part of a panel's layout and the specific elements to appear in the legend are described by each of the panel's data layers.
Locuszoom.js creates an global object namespace called LocusZoom
. This object has the following methods:
-
LocusZoom.populate(selector, datasource, [layout])
Populate a single DOM element with a LocusZoom plot.
-
selector
string, required - DOM query selector string. -
datasource
object, required - A valid Data Sources object that defines the namespaces and methods for retrieving data. -
layout
object, optional - A valid Layout object that defines the geometry and behaviors of the plot. If not provided the standard association plot layout will be used.
-
-
LocusZoom.populate(selector, datasource, [layout])
Identical to
LocusZoom.populate()
but will generate plot in all elements that match the DOM query selector string, not just the first found.