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.
galaxy.tool_util.toolbox.views package
Submodules
galaxy.tool_util.toolbox.views.definitions module
- class galaxy.tool_util.toolbox.views.definitions.StaticToolBoxViewTypeEnum(value)[source]
-
An enumeration.
- generic = 'generic'
- activity = 'activity'
- publication = 'publication'
- training = 'training'
- class galaxy.tool_util.toolbox.views.definitions.ExcludeTool(*, tool_id: str)[source]
Bases:
BaseModel
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.ExcludeToolRegex(*, tool_id_regex: str)[source]
Bases:
BaseModel
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.ExcludeTypes(*, types: List[str])[source]
Bases:
BaseModel
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.Tool(*, type: typing_extensions.Literal[tool] = 'tool', id: str)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[tool]
- model_config: ClassVar[ConfigDict] = {'populate_by_name': True}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.Label(*, type: typing_extensions.Literal[label] = 'label', id: str | None = None, text: str)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[label]
- model_config: ClassVar[ConfigDict] = {'populate_by_name': True}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.LabelShortcut(*, content_type: typing_extensions.Literal[simple_label] = 'simple_label', label: str)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[simple_label]
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.Workflow(*, type: typing_extensions.Literal[workflow] = 'workflow', id: str)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[workflow]
- model_config: ClassVar[ConfigDict] = {'populate_by_name': True}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.ItemsFrom(*, content_type: typing_extensions.Literal[items_from] = 'items_from', items_from: str, excludes: List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None = None)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[items_from]
- excludes: List[galaxy.tool_util.toolbox.views.definitions.ExcludeTool | galaxy.tool_util.toolbox.views.definitions.ExcludeToolRegex | galaxy.tool_util.toolbox.views.definitions.ExcludeTypes] | None[List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None]
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.Section(*, items: List[Tool | Label | LabelShortcut | Workflow | ItemsFrom] | None = None, type: typing_extensions.Literal[section], id: str | None = None, name: str | None = None, excludes: List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None = None)[source]
Bases:
BaseModel
,HasItems
- content_type: typing_extensions.Literal[section]
- excludes: List[galaxy.tool_util.toolbox.views.definitions.ExcludeTool | galaxy.tool_util.toolbox.views.definitions.ExcludeToolRegex | galaxy.tool_util.toolbox.views.definitions.ExcludeTypes] | None[List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None]
- model_config: ClassVar[ConfigDict] = {'populate_by_name': True}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.SectionAlias(*, content_type: typing_extensions.Literal[section_alias] = 'section_alias', section: str, excludes: List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None = None)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[section_alias]
- excludes: List[galaxy.tool_util.toolbox.views.definitions.ExcludeTool | galaxy.tool_util.toolbox.views.definitions.ExcludeToolRegex | galaxy.tool_util.toolbox.views.definitions.ExcludeTypes] | None[List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None]
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.SectionAliases(*, content_type: typing_extensions.Literal[section_aliases] = 'section_aliases', sections: List[str], excludes: List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None = None)[source]
Bases:
BaseModel
- content_type: typing_extensions.Literal[section_aliases]
- excludes: List[galaxy.tool_util.toolbox.views.definitions.ExcludeTool | galaxy.tool_util.toolbox.views.definitions.ExcludeToolRegex | galaxy.tool_util.toolbox.views.definitions.ExcludeTypes] | None[List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None]
- model_config: ClassVar[ConfigDict] = {}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.definitions.StaticToolBoxView(*, items: List[Section | SectionAlias | SectionAliases | Tool | Label | LabelShortcut | Workflow | ItemsFrom] | None = None, id: str, name: str, description: str | None = None, type: StaticToolBoxViewTypeEnum, excludes: List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None = None)[source]
Bases:
BaseModel
,HasItems
- view_type: StaticToolBoxViewTypeEnum
- items: List[Section | SectionAlias | SectionAliases | Tool | Label | LabelShortcut | Workflow | ItemsFrom] | None
- excludes: List[galaxy.tool_util.toolbox.views.definitions.ExcludeTool | galaxy.tool_util.toolbox.views.definitions.ExcludeToolRegex | galaxy.tool_util.toolbox.views.definitions.ExcludeTypes] | None[List[ExcludeTool | ExcludeToolRegex | ExcludeTypes] | None]
- model_config: ClassVar[ConfigDict] = {'populate_by_name': True}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
galaxy.tool_util.toolbox.views.edam module
- class galaxy.tool_util.toolbox.views.edam.EdamPanelMode(value)[source]
-
An enumeration.
- merged = 'merged'
- topics = 'topics'
- operations = 'operations'
- class galaxy.tool_util.toolbox.views.edam.EdamToolPanelView(edam: Dict[str, Dict], mode: EdamPanelMode = EdamPanelMode.merged)[source]
Bases:
ToolPanelView
- apply_view(base_tool_panel: ToolPanelElements, toolbox_registry: ToolBoxRegistry) ToolPanelElements [source]
Consume tool panel state and return custom tool panel view.
- to_model() ToolPanelViewModel [source]
Convert abstract description to dictionary description to emit via the API.
galaxy.tool_util.toolbox.views.interface module
- class galaxy.tool_util.toolbox.views.interface.ToolPanelViewModelType(value)[source]
-
An enumeration.
- default_type = 'default'
- generic = 'generic'
- activity = 'activity'
- ontology = 'ontology'
- publication = 'publication'
- training = 'training'
- class galaxy.tool_util.toolbox.views.interface.ToolPanelViewModel(*, id: str, model_class: str, name: str, description: str | None = None, view_type: ToolPanelViewModelType, searchable: bool)[source]
Bases:
BaseModel
A view of ToolPanelView objects serialized for the API.
- view_type: ToolPanelViewModelType
- model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class galaxy.tool_util.toolbox.views.interface.ToolBoxRegistry[source]
Bases:
object
View of ToolBox provided to ToolPanelView to reason about tools loaded.
- abstract has_tool(tool_id: str) bool [source]
Return bool indicating if tool with specified id is loaded.
- abstract add_tool_to_tool_panel_view(tool, tool_panel_component: HasPanelItems) None [source]
Add tool to the tool panel view component (root or section).
- class galaxy.tool_util.toolbox.views.interface.ToolPanelView[source]
Bases:
object
- abstract apply_view(base_tool_panel: ToolPanelElements, toolbox_registry: ToolBoxRegistry) ToolPanelElements [source]
Consume tool panel state and return custom tool panel view.
- abstract to_model() ToolPanelViewModel [source]
Convert abstract description to dictionary description to emit via the API.
- galaxy.tool_util.toolbox.views.interface.walk_loaded_tools(tool_panel: ToolPanelElements, toolbox_registry: ToolBoxRegistry)[source]
galaxy.tool_util.toolbox.views.sources module
galaxy.tool_util.toolbox.views.static module
- class galaxy.tool_util.toolbox.views.static.StaticToolPanelView(definition: StaticToolBoxView)[source]
Bases:
ToolPanelView
- __init__(definition: StaticToolBoxView)[source]
- apply_view(base_tool_panel: ToolPanelElements, toolbox_registry: ToolBoxRegistry) ToolPanelElements [source]
Consume tool panel state and return custom tool panel view.
- to_model() ToolPanelViewModel [source]
Convert abstract description to dictionary description to emit via the API.