Warning

This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.tools.special_tools

import logging
log = logging.getLogger(__name__)

SPECIAL_TOOLS = {
    "history export": "galaxy/tools/imp_exp/exp_history_to_archive.xml",
    "history import": "galaxy/tools/imp_exp/imp_history_from_archive.xml",
    "data fetch": "galaxy/tools/data_fetch.xml",
}


[docs]def load_lib_tools(toolbox): for name, path in SPECIAL_TOOLS.items(): tool = toolbox.load_hidden_lib_tool(path) log.debug("Loaded %s tool: %s", name, tool.id)