Warning

This document is for an old release 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.workflow package

Submodules

galaxy.workflow.extract module

This module contains functionality to aid in extracting workflows from histories.

galaxy.workflow.extract.extract_workflow(trans, user, history=None, job_ids=None, dataset_ids=None, dataset_collection_ids=None, workflow_name=None, dataset_names=None, dataset_collection_names=None)[source]
galaxy.workflow.extract.summarize(trans, history=None)[source]

Return mapping of job description to datasets for active items in supplied history - needed for building workflow from a history.

Formerly call get_job_dict in workflow web controller.

galaxy.workflow.modules module

Modules used in building workflows

class galaxy.workflow.modules.NoReplacement[source]

Bases: object

class galaxy.workflow.modules.WorkflowModule(trans, content_id=None, **kwds)[source]

Bases: object

__init__(trans, content_id=None, **kwds)[source]
classmethod from_dict(Class, trans, d, **kwds)[source]
classmethod from_workflow_step(Class, trans, step, **kwds)[source]
save_to_step(step)[source]
get_type()[source]
get_name()[source]
get_version()[source]
get_content_id()[source]

If this component has an identifier external to the step (such as a tool or another workflow) return the identifier for that content.

get_tooltip(static_path='')[source]
get_state(nested=True)[source]

Return a serializable representation of the persistable state of the step.

recover_state(state, **kwds)[source]

Recover state dict from simple dictionary describing configuration state (potentially from persisted step state).

Sub-classes should supply a default_state method which contains the initial state dict with key, value pairs for all available attributes.

get_errors(**kwargs)[source]

This returns a step related error message as string or None

get_inputs()[source]

This returns inputs displayed in the workflow editor

get_data_inputs()[source]

Get configure time data input descriptions.

get_data_outputs()[source]
get_post_job_actions(incoming)[source]
check_and_update_state()[source]

If the state is not in sync with the current implementation of the module, try to update. Returns a list of messages to be displayed

add_dummy_datasets(connections=None, steps=None)[source]

Replace connected inputs with placeholder/dummy values.

get_config_form()[source]

Serializes input parameters of a module into input dictionaries.

get_runtime_state()[source]
get_runtime_inputs(**kwds)[source]

Used internally by modules and when displaying inputs in workflow editor and run workflow templates.

compute_runtime_state(trans, step_updates=None)[source]

Determine the runtime state (potentially different from self.state which describes configuration state). This (again unlike self.state) is currently always a DefaultToolState object.

If step_updates is None, this is likely for rendering the run form for instance and no runtime properties are available and state must be solely determined by the default runtime state described by the step.

If step_updates are available they describe the runtime properties supplied by the workflow runner.

encode_runtime_state(runtime_state)[source]

Takes the computed runtime state and serializes it during run request creation.

decode_runtime_state(runtime_state)[source]

Takes the serialized runtime state and decodes it when running the workflow.

execute(trans, progress, invocation_step, use_cached_job=False)[source]

Execute the given workflow invocation step.

Use the supplied workflow progress object to track outputs, find inputs, etc….

Return a False if there is additional processing required to on subsequent workflow scheduling runs, None or True means the workflow step executed properly.

do_invocation_step_action(step, action)[source]

Update or set the workflow invocation state action - generic extension point meant to allows users to interact with interactive workflow modules. The action object returned from this method will be attached to the WorkflowInvocationStep and be available the next time the workflow scheduler visits the workflow.

recover_mapping(invocation_step, progress)[source]

Re-populate progress object with information about connections from previously executed steps recorded via invocation_steps.

get_replacement_parameters(step)[source]

Return a list of replacement parameters.

class galaxy.workflow.modules.SubWorkflowModule(trans, content_id=None, **kwds)[source]

Bases: galaxy.workflow.modules.WorkflowModule

type = 'subworkflow'
name = 'Subworkflow'
classmethod from_dict(Class, trans, d, **kwds)[source]
classmethod from_workflow_step(Class, trans, step, **kwds)[source]
save_to_step(step)[source]
get_name()[source]
get_data_inputs()[source]

Get configure time data input descriptions.

get_modules()[source]
get_errors(**kwargs)[source]
get_data_outputs()[source]
get_content_id()[source]
execute(trans, progress, invocation_step, use_cached_job=False)[source]

Execute the given workflow step in the given workflow invocation. Use the supplied workflow progress object to track outputs, find inputs, etc…

get_runtime_state()[source]
get_runtime_inputs(connections=None)[source]
get_replacement_parameters(step)[source]

Return a list of replacement parameters.

class galaxy.workflow.modules.InputProxy(input, prefixed_name)[source]

Bases: object

Provide InputParameter-interfaces over inputs but renamed for workflow context.

__init__(input, prefixed_name)[source]
to_dict(*args, **kwds)[source]
class galaxy.workflow.modules.InputModule(trans, content_id=None, **kwds)[source]

Bases: galaxy.workflow.modules.WorkflowModule

get_runtime_state()[source]
get_data_inputs()[source]
execute(trans, progress, invocation_step, use_cached_job=False)[source]
recover_mapping(invocation_step, progress)[source]
class galaxy.workflow.modules.InputDataModule(trans, content_id=None, **kwds)[source]

Bases: galaxy.workflow.modules.InputModule

type = 'data_input'
name = 'Input dataset'
get_data_outputs()[source]
get_filter_set(connections=None)[source]
get_runtime_inputs(connections=None)[source]
class galaxy.workflow.modules.InputDataCollectionModule(trans, content_id=None, **kwds)[source]

Bases: galaxy.workflow.modules.InputModule

type = 'data_collection_input'
name = 'Input dataset collection'
default_collection_type = 'list'
collection_type = 'list'
get_inputs()[source]
get_runtime_inputs(**kwds)[source]
get_data_outputs()[source]
class galaxy.workflow.modules.InputParameterModule(trans, content_id=None, **kwds)[source]

Bases: galaxy.workflow.modules.WorkflowModule

type = 'parameter_input'
name = 'Input parameter'
default_parameter_type = 'text'
default_optional = False
parameter_type = 'text'
optional = False
get_inputs()[source]
get_runtime_inputs(**kwds)[source]
get_runtime_state()[source]
get_data_inputs()[source]
execute(trans, progress, invocation_step, use_cached_job=False)[source]
class galaxy.workflow.modules.PauseModule(trans, content_id=None, **kwds)[source]

Bases: galaxy.workflow.modules.WorkflowModule

Initially this module will unconditionally pause a workflow - will aim to allow conditional pausing later on.

type = 'pause'
name = 'Pause for dataset review'
get_data_inputs()[source]
get_data_outputs()[source]
get_runtime_state()[source]
execute(trans, progress, invocation_step, use_cached_job=False)[source]
recover_mapping(invocation_step, progress)[source]
do_invocation_step_action(step, action)[source]

Update or set the workflow invocation state action - generic extension point meant to allows users to interact with interactive workflow modules. The action object returned from this method will be attached to the WorkflowInvocationStep and be available the next time the workflow scheduler visits the workflow.

class galaxy.workflow.modules.ToolModule(trans, tool_id, tool_version=None, exact_tools=True, **kwds)[source]

Bases: galaxy.workflow.modules.WorkflowModule

type = 'tool'
name = 'Tool'
__init__(trans, tool_id, tool_version=None, exact_tools=True, **kwds)[source]
classmethod from_dict(Class, trans, d, **kwds)[source]
classmethod from_workflow_step(Class, trans, step, **kwds)[source]
save_to_step(step)[source]
get_name()[source]
get_content_id()[source]
get_version()[source]
get_tooltip(static_path='')[source]
get_errors(include_tool_id=False, **kwargs)[source]
get_inputs()[source]
get_data_inputs()[source]
get_data_outputs()[source]
get_config_form()[source]
check_and_update_state()[source]
add_dummy_datasets(connections=None, steps=None)[source]
get_post_job_actions(incoming)[source]
get_runtime_state()[source]
get_runtime_inputs(**kwds)[source]
compute_runtime_state(trans, step_updates=None)[source]
decode_runtime_state(runtime_state)[source]

Take runtime state from persisted invocation and convert it into a DefaultToolState object for use during workflow invocation.

execute(trans, progress, invocation_step, use_cached_job=False)[source]
recover_mapping(invocation_step, progress)[source]
get_replacement_parameters(step)[source]

Return a list of replacement parameters.

class galaxy.workflow.modules.WorkflowModuleFactory(module_types)[source]

Bases: object

__init__(module_types)[source]
from_dict(trans, d, **kwargs)[source]

Return module initialized from the data in dictionary d.

from_workflow_step(trans, step, **kwargs)[source]

Return module initializd from the WorkflowStep object step.

galaxy.workflow.modules.is_tool_module_type(module_type)[source]
galaxy.workflow.modules.load_module_sections(trans)[source]

Get abstract description of the workflow modules this Galaxy instance is configured with.

exception galaxy.workflow.modules.DelayedWorkflowEvaluation(why=None)[source]

Bases: exceptions.Exception

__init__(why=None)[source]
exception galaxy.workflow.modules.CancelWorkflowEvaluation[source]

Bases: exceptions.Exception

class galaxy.workflow.modules.WorkflowModuleInjector(trans, allow_tool_state_corrections=False)[source]

Bases: object

Injects workflow step objects from the ORM with appropriate module and module generated/influenced state.

__init__(trans, allow_tool_state_corrections=False)[source]
inject(step, step_args=None, steps=None, **kwargs)[source]

Pre-condition: step is an ORM object coming from the database, if supplied step_args is the representation of the inputs for that step supplied via web form.

Post-condition: The supplied step has new non-persistent attributes useful during workflow invocation. These include ‘upgrade_messages’, ‘state’, ‘input_connections_by_name’, and ‘module’.

If step_args is provided from a web form this is applied to generate ‘state’ else it is just obtained from the database.

galaxy.workflow.modules.populate_module_and_state(trans, workflow, param_map, allow_tool_state_corrections=False, module_injector=None)[source]

Used by API but not web controller, walks through a workflow’s steps and populates transient module and state attributes on each.

galaxy.workflow.render module

class galaxy.workflow.render.WorkflowCanvas[source]

Bases: object

__init__()[source]
finish()[source]
add_boxes(step_dict, width, name_fill)[source]
add_text(module_data_inputs, module_data_outputs, step, module_name)[source]
add_connection(step_dict, conn, output_dict)[source]
add_steps(highlight_errors=False)[source]
populate_data_for_step(step, module_name, module_data_inputs, module_data_outputs, tool_errors=None)[source]

galaxy.workflow.run module

galaxy.workflow.run.invoke(trans, workflow, workflow_run_config, workflow_invocation=None, populate_state=False)[source]
class galaxy.workflow.run.WorkflowRunConfig(target_history, replacement_dict, copy_inputs_to_history=False, inputs=None, param_map=None, allow_tool_state_corrections=False, use_cached_job=False, resource_params=None)[source]

Bases: object

Wrapper around all the ways a workflow execution can be parameterized.

Parameters:
  • target_history (galaxy.model.History.) – History to execute workflow in.
  • replacement_dict (dict) – Workflow level parameters used for renaming post job actions.
  • copy_inputs_to_history (bool) – Should input data parameters be copied to target_history. (Defaults to False)
  • inputs (dict) – Map from step ids to dict’s containing HDA for these steps.
  • inputs_by (str) – How inputs maps to inputs (datasets/collections) to workflows steps - by unencoded database id (‘step_id’), index in workflow ‘step_index’ (independent of database), or by input name for that step (‘name’).
  • param_map (dict) – Override step parameters - should be dict with step id keys and tool param name-value dicts as values.
__init__(target_history, replacement_dict, copy_inputs_to_history=False, inputs=None, param_map=None, allow_tool_state_corrections=False, use_cached_job=False, resource_params=None)[source]

galaxy.workflow.run_request module

class galaxy.workflow.run_request.WorkflowRunConfig(target_history, replacement_dict, copy_inputs_to_history=False, inputs=None, param_map=None, allow_tool_state_corrections=False, use_cached_job=False, resource_params=None)[source]

Bases: object

Wrapper around all the ways a workflow execution can be parameterized.

Parameters:
  • target_history (galaxy.model.History.) – History to execute workflow in.
  • replacement_dict (dict) – Workflow level parameters used for renaming post job actions.
  • copy_inputs_to_history (bool) – Should input data parameters be copied to target_history. (Defaults to False)
  • inputs (dict) – Map from step ids to dict’s containing HDA for these steps.
  • inputs_by (str) – How inputs maps to inputs (datasets/collections) to workflows steps - by unencoded database id (‘step_id’), index in workflow ‘step_index’ (independent of database), or by input name for that step (‘name’).
  • param_map (dict) – Override step parameters - should be dict with step id keys and tool param name-value dicts as values.
__init__(target_history, replacement_dict, copy_inputs_to_history=False, inputs=None, param_map=None, allow_tool_state_corrections=False, use_cached_job=False, resource_params=None)[source]
galaxy.workflow.run_request.build_workflow_run_configs(trans, workflow, payload)[source]
galaxy.workflow.run_request.workflow_run_config_to_request(trans, run_config, workflow)[source]
galaxy.workflow.run_request.workflow_request_to_run_config(work_request_context, workflow_invocation)[source]

galaxy.workflow.scheduling_manager module

class galaxy.workflow.scheduling_manager.WorkflowSchedulingManager(app)[source]

Bases: galaxy.util.handlers.ConfiguresHandlers

A workflow scheduling manager based loosely on pattern established by galaxy.manager.JobManager. Only schedules workflows on handler processes.

__init__(app)[source]
shutdown()[source]
queue(workflow_invocation, request_params)[source]
class galaxy.workflow.scheduling_manager.WorkflowRequestMonitor(app, workflow_scheduling_manager)[source]

Bases: galaxy.util.monitors.Monitors

__init__(app, workflow_scheduling_manager)[source]
start()[source]
shutdown()[source]

galaxy.workflow.steps module

This module contains utility methods for reasoning about and ordering workflow steps.

galaxy.workflow.steps.attach_ordered_steps(workflow, steps)[source]

Attempt to topologically order steps and attach to workflow. If this fails - the workflow contains cycles so it mark it as such.

galaxy.workflow.steps.order_workflow_steps(steps)[source]

Perform topological sort of the steps, return ordered or None

galaxy.workflow.steps.edgelist_for_workflow_steps(steps)[source]

Create a list of tuples representing edges between WorkflowSteps based on associated ``WorkflowStepConnection``s

galaxy.workflow.steps.order_workflow_steps_with_levels(steps)[source]