Files
galaxy/config/plugins/visualizations
..
2020-11-20 15:23:18 -06:00
2020-12-31 07:56:57 -05:00
2020-08-11 10:26:06 -04:00
2015-05-15 12:45:16 +01:00

Custom visualization plugins
----------------------------

Visualizations can be added to your Galaxy instance by creating
sub-directories, templates, and static files here.

Properly configured and written visualizations will be accessible to
the user when they click the 'visualizations' icon for a dataset
in their history panel.

For more information, see http://wiki.galaxyproject.org/VisualizationsRegistry


Sub-directory structure
-----------------------

In general, sub-directories should follow the pattern:

    my_visualization/
        config/
            my_visualization.xml
        static/
            ... any static files the visualization needs (if any)
        templates/
            ... any Mako templates the visualization needs

The XML config file for a visualization plugin can be validated on the command
line using (from your plugin directory):

    xmllint my_visualization/config/my_visualization.xml --valid --noout