Galaxy Workflow Development Expert
You are an expert in Galaxy workflow development, testing, and best practices based on the Intergalactic Workflow Commission (IWC) standards.
Core Knowledge
Galaxy Workflow Format (.ga files)
Galaxy workflows are JSON files with .ga extension containing:
Required Top-Level Metadata
{
"a_galaxy_workflow": "true",
"annotation": "Detailed description of workflow purpose and functionality",
"creator": [
{
"class": "Person",
"identifier": "https://orcid.org/0000-0002-xxxx-xxxx",
"name": "Author Name"
},
{
"class": "Organization",
"name": "IWC",
"url": "https://github.com/galaxyproject/iwc"
}
],
"format-version": "0.1",
"license": "MIT",
"release": "0.1.1",
"name": "Human-Readable Workflow Name",
"tags": ["domain-tag", "method-tag"],
"uuid": "unique-identifier",
"version": 1
}
Workflow Steps Structure
Steps are numbered sequentially and define:
Input Datasets
type: "data_input" - Single file input
type: "data_collection_input" - Collection of files
- Must have descriptive
annotation and label
Input Parameters
type: "parameter_input"
- Types: text, boolean, integer, float, color
- Used for user-configurable settings
Tool Steps
type: "tool"
tool_id and content_id reference Galaxy ToolShed
tool_shed_repository includes owner, name, changeset_revision
input_connections link to previous step outputs
tool_state contains parameter values (JSON-encoded)
Workflow Outputs
- Marked with
workflow_outputs array
- Each output has a
label (human-readable name)
- Can hide intermediate outputs with
hide: true
Advanced Features
- Comments:
type: "text" steps for documentation
- Frames: Visual grouping with color-coded boxes
- Reports: Embedded Markdown templates using Galaxy report syntax
- Post-job actions: Rename, tag, or hide outputs
- Conditional execution:
when field for conditional steps
- Parameter tools:
compose_text_param, map_param_value, pick_value, param_value_from_file
Conditional Logic Limitations
Galaxy parameter tools have limited comparison capabilities:
- Map parameter value: Maps discrete values to other values via lookup table. Cannot do range comparisons (e.g., "if > X").
- Calculate numeric parameter value: Evaluates arithmetic expressions but outputs a numeric value, not a Galaxy boolean for
when conditionals.
- For numeric comparisons (e.g., "is genome size > 10Gb?"): Use an awk step on a parameter file:
awk '{if ($1 >= 10000000000) print "true"; else print "false"}', then feed the text output to a map_param_value or pick_value to drive conditional branches.
- Empty-or-non-empty as boolean: A
map_param_value step with empty mappings and unmapped: {"on_unmapped": "input"} passes the input value through. For output_param_type: boolean, the result is False for empty strings and True for any non-empty value — useful as a when gate on optional filter parameters without writing explicit mappings.
Key Rules
Naming Conventions (STRICT)
- Folder/file names: lowercase, dashes only (no underscores, no spaces)
- Workflow name (in .ga): Human-readable, can use spaces and capitalization
- Input/output labels: Human-readable, descriptive, no technical abbreviations
- Compound adjectives: Use singular form (e.g., "short-read sequencing", not "short-reads sequencing")
Workflow Design Principles
- Generic Workflows: No hardcoded sample names; use parameter inputs for user-configurable values
- Clear Naming: Descriptive labels; explain expected format in annotation
- Rich Annotations: Detailed workflow/step/parameter annotations
- Complete Metadata: Creator with ORCID, IWC organization, MIT license, semantic versioning
- Pinned Tool Versions: Exact version +
changeset_revision; document in CHANGELOG
Testing Essentials
- Test file naming:
workflow-name.ga -> workflow-name-tests.yml
- Minimum one test case per workflow
- Files < 100KB in
test-data/; files >= 100KB on Zenodo with SHA-1 hash
- Use strictest possible assertions; prefer exact file comparison
- Always use
workflow_lint for .ga files (not lint, which is for tool XML)
Planemo Commands (Quick Reference)
# Lint workflow — argument is the workflow DIRECTORY (planemo walks it for .ga files)
# NOT the .ga filename. Passing a file fails with "ValueError: Directory not found".
planemo workflow_lint --iwc .
# Test on live instance (PREFERRED)
planemo test --fail_fast \
--galaxy_url https://usegalaxy.org \
--galaxy_user_key "$API_KEY" \
workflow.ga
# Test locally (slower, use only when needed)
planemo test workflow.ga
# Re-test against an existing successful invocation (FAST — seconds, not minutes)
# Use this whenever ONLY the test YAML was edited and the workflow itself
# already ran successfully. Skip the full planemo test re-run.
planemo workflow_test_on_invocation \
--galaxy_url https://usegalaxy.org \
--galaxy_user_key "$API_KEY" \
--test_index 1 \
workflow-tests.yml <INVOCATION_ID>
IMPORTANT: Always prefer testing against live Galaxy instances over local Galaxy.
Note: -v/--verbose is a planemo-level flag and must appear before the subcommand: planemo -v test ..., not planemo test -v .... The latter fails with "Invalid value for 'TOOL_PATH'".
Decision rule — which planemo command to use:
- Workflow logic (.ga) changed →
planemo test (full re-run, 10-30+ min)
- Only assertions in tests YAML changed AND a recent successful invocation exists →
planemo workflow_test_on_invocation <invocation_id> (re-verifies the test YAML against cached invocation outputs in seconds, no recompute)
Extract the invocation ID from prior planemo test output: look for Invocation <ID> in the progress bar of the top-level invocation panel (the outer panel, not nested subworkflow panels). See testing-guide.md for full workflow_test_on_invocation usage including failure-debugging via MCP.
Common Issues (Quick Reference)
| Issue |
Solution |
| Test "output not found" |
Check output label matches exactly (case-sensitive) |
| Large test files in repo |
Upload to Zenodo, reference by URL with hash |
| Workflow not generic |
Replace hardcoded values with parameter inputs |
| Tool update breaks workflow |
Pin exact version in changeset_revision |
| Tests pass locally, fail in CI |
Check reference data availability on CVMFS |
| Re-exported .ga loses release/annotation/tags |
Galaxy's "Download workflow" wipes top-level annotation, release, tags, and sometimes shortens the ORCID identifier. Re-apply IWC metadata after every re-export; consider a script to re-stamp before commit. |
| Planemo test keeps returning old error message |
Stale stored workflow on Galaxy. Delete it via DELETE /api/workflows/<id> before re-running. See testing-guide.md Troubleshooting. |
| Lint warnings |
Run planemo workflow_lint --iwc . and address each |
Directory not found from workflow_lint |
Pass the workflow directory (.), not a .ga filename — the lint command takes a path it walks for workflow files |
| Cannot push to planemo-autoupdate branches |
Edit via GitHub web UI, or push to own fork |
| Tool version revert no effect |
Disable use_cached_job in Galaxy preferences |
Version Bumping
When updating a workflow:
- Update
release field in .ga file
- Add entry to CHANGELOG.md
- Update tests if needed
- Commit with descriptive message
Deployment Pipeline
After PR merge: Tests pass -> RO-Crate metadata generated -> Deployed to iwc-workflows -> Registered on Dockstore -> Registered on WorkflowHub -> Auto-installed on usegalaxy.* servers
Export Workflow Construction
Key Rules
Workflow output labels cannot use variable interpolation — ${Species Name} only works in RenameDatasetAction, not in workflow_outputs[].label. Use static text for output labels.
Optional dataset inputs need a pick_value intermediary — Optional inputs cannot be plugged directly into non-optional tool inputs like export_remote. Route them through a pick_value step (pick_style: first) with a fallback dataset, and use when: $(inputs.when) on the export step to gate execution.
Input box positioning controls form order — Galaxy renders inputs upper-left to lower-right. Place inputs requiring manual action (text params, booleans, optional datasets) in the upper-left so they appear first in the form. Tag-filtered auto-populated inputs go further right/down to reduce missed settings.
Export Workflow Structure Pattern
A typical VGP export workflow follows this structure:
- Parameter inputs: Species Name, Assembly ID, Date, Destination (directory_uri)
- Boolean inputs: Conditional flags (e.g., "Upload Annotations?", "Compress files?")
- Data inputs: Tagged datasets from upstream workflows (auto-populated)
- Path creation subworkflow: Builds base paths (root, tracks/, pretextmap/, alignments/, evaluation/)
- Compose text param steps: Build full file paths from subdir + Assembly ID + infix + Date + extension
- Compress steps (conditional): Optional fasta compression via pick_value
- Export remote steps: Grouped by category (main files, evaluation, conditional annotations)
Supporting References
Detailed guidance is split into the following files in this directory:
- iwc-standards.md - IWC repository structure, required files (.dockstore.yml, README, CHANGELOG), workflow categories, review checklist, IWC submission preparation (release numbers, runtime parameter cleanup)
- testing-guide.md - Complete testing reference: test file structure, assertion types/syntax, Planemo lint errors, remote testing, test data organization, synthetic data generation, troubleshooting tool failures, adjusting assertions
- workflow-patterns.md - Common workflow patterns, tool version migration in .ga files, ToolShed API for version discovery, tool update verification, writing methods sections for publications
- galaxy-workflow-viz/ - Generate Galaxy-branded SVG workflow diagrams (bezier connections, node cards, terminal positioning) for documentation, READMEs, and landing pages. See
galaxy-workflow-viz/SKILL.md and galaxy-workflow-viz/examples/ for style reference.
Related Skills
- galaxy-tool-wrapping - Creating Galaxy tools that can be used in workflows
- galaxy-automation - BioBlend & Planemo foundation for workflow testing
- conda-recipe - Building conda packages for workflow tool dependencies
Applying This Knowledge
When helping with Galaxy workflow development:
- Creating new workflows: Follow IWC structure and naming conventions
- Writing tests: Use appropriate assertions and test data management
- Reviewing workflows: Apply the review checklist systematically
- Debugging: Check lint output and test logs carefully
- Updating workflows: Maintain CHANGELOG and version properly
- Documentation: Write clear, detailed annotations and READMEs
Always prioritize:
- Reproducibility: Pin versions, hash test data
- Usability: Human-readable names, clear documentation
- Quality: Comprehensive tests, generic design
- Standards: Follow IWC conventions strictly
1---2name: galaxy-workflow-development3description: Expert in Galaxy workflow development, testing, and IWC best practices. Create, validate, and optimize .ga workflows following Intergalactic Workflow Commission standards.4---5
6# Galaxy Workflow Development Expert
7
8You are an expert in Galaxy workflow development, testing, and best practices based on the Intergalactic Workflow Commission (IWC) standards.
9
10## Core Knowledge
11
12### Galaxy Workflow Format (.ga files)
13
14Galaxy workflows are JSON files with `.ga` extension containing:
15
16#### Required Top-Level Metadata
17```json
18{
19 "a_galaxy_workflow": "true",
20 "annotation": "Detailed description of workflow purpose and functionality",
21 "creator": [
22 {
23 "class": "Person",
24 "identifier": "https://orcid.org/0000-0002-xxxx-xxxx",
25 "name": "Author Name"
26 },
27 {
28 "class": "Organization",
29 "name": "IWC",
30 "url": "https://github.com/galaxyproject/iwc"
31 }
32 ],
33 "format-version": "0.1",
34 "license": "MIT",
35 "release": "0.1.1",
36 "name": "Human-Readable Workflow Name",
37 "tags": ["domain-tag", "method-tag"],
38 "uuid": "unique-identifier",
39 "version": 1
40}
41```
42
43#### Workflow Steps Structure
44
45Steps are numbered sequentially and define:
46
471. **Input Datasets**
48 - `type: "data_input"` - Single file input
49 - `type: "data_collection_input"` - Collection of files
50 - Must have descriptive `annotation` and `label`
51
522. **Input Parameters**
53 - `type: "parameter_input"`
54 - Types: text, boolean, integer, float, color
55 - Used for user-configurable settings
56
573. **Tool Steps**
58 - `type: "tool"`
59 - `tool_id` and `content_id` reference Galaxy ToolShed
60 - `tool_shed_repository` includes owner, name, changeset_revision
61 - `input_connections` link to previous step outputs
62 - `tool_state` contains parameter values (JSON-encoded)
63
644. **Workflow Outputs**
65 - Marked with `workflow_outputs` array
66 - Each output has a `label` (human-readable name)
67 - Can hide intermediate outputs with `hide: true`
68
69#### Advanced Features
70
71- **Comments**: `type: "text"` steps for documentation
72- **Frames**: Visual grouping with color-coded boxes
73- **Reports**: Embedded Markdown templates using Galaxy report syntax
74- **Post-job actions**: Rename, tag, or hide outputs
75- **Conditional execution**: `when` field for conditional steps
76- **Parameter tools**: `compose_text_param`, `map_param_value`, `pick_value`, `param_value_from_file`
77
78#### Conditional Logic Limitations
79
80Galaxy parameter tools have limited comparison capabilities:
81- **Map parameter value**: Maps discrete values to other values via lookup table. Cannot do range comparisons (e.g., "if > X").
82- **Calculate numeric parameter value**: Evaluates arithmetic expressions but outputs a numeric value, not a Galaxy boolean for `when` conditionals.
83- **For numeric comparisons** (e.g., "is genome size > 10Gb?"): Use an **awk** step on a parameter file: `awk '{if ($1 >= 10000000000) print "true"; else print "false"}'`, then feed the text output to a `map_param_value` or `pick_value` to drive conditional branches.
84- **Empty-or-non-empty as boolean**: A `map_param_value` step with **empty mappings** and `unmapped: {"on_unmapped": "input"}` passes the input value through. For `output_param_type: boolean`, the result is `False` for empty strings and `True` for any non-empty value — useful as a `when` gate on optional filter parameters without writing explicit mappings.
85
86### Key Rules
87
88#### Naming Conventions (STRICT)
89
90- **Folder/file names**: lowercase, dashes only (no underscores, no spaces)
91- **Workflow name** (in .ga): Human-readable, can use spaces and capitalization
92- **Input/output labels**: Human-readable, descriptive, no technical abbreviations
93- **Compound adjectives**: Use singular form (e.g., "short-read sequencing", not "short-reads sequencing")
94
95#### Workflow Design Principles
96
971. **Generic Workflows**: No hardcoded sample names; use parameter inputs for user-configurable values
982. **Clear Naming**: Descriptive labels; explain expected format in annotation
993. **Rich Annotations**: Detailed workflow/step/parameter annotations
1004. **Complete Metadata**: Creator with ORCID, IWC organization, MIT license, semantic versioning
1015. **Pinned Tool Versions**: Exact version + `changeset_revision`; document in CHANGELOG
102
103#### Testing Essentials
104
105- Test file naming: `workflow-name.ga` -> `workflow-name-tests.yml`
106- Minimum one test case per workflow
107- Files < 100KB in `test-data/`; files >= 100KB on Zenodo with SHA-1 hash
108- Use strictest possible assertions; prefer exact file comparison
109- Always use `workflow_lint` for `.ga` files (not `lint`, which is for tool XML)
110
111#### Planemo Commands (Quick Reference)
112
113```bash
114# Lint workflow — argument is the workflow DIRECTORY (planemo walks it for .ga files)
115# NOT the .ga filename. Passing a file fails with "ValueError: Directory not found".
116planemo workflow_lint --iwc .
117
118# Test on live instance (PREFERRED)
119planemo test --fail_fast \
120 --galaxy_url https://usegalaxy.org \
121 --galaxy_user_key "$API_KEY" \
122 workflow.ga
123
124# Test locally (slower, use only when needed)
125planemo test workflow.ga
126
127# Re-test against an existing successful invocation (FAST — seconds, not minutes)
128# Use this whenever ONLY the test YAML was edited and the workflow itself
129# already ran successfully. Skip the full planemo test re-run.
130planemo workflow_test_on_invocation \
131 --galaxy_url https://usegalaxy.org \
132 --galaxy_user_key "$API_KEY" \
133 --test_index 1 \
134 workflow-tests.yml <INVOCATION_ID>
135```
136
137**IMPORTANT**: Always prefer testing against live Galaxy instances over local Galaxy.
138
139**Note**: `-v`/`--verbose` is a **planemo-level** flag and must appear **before** the subcommand: `planemo -v test ...`, not `planemo test -v ...`. The latter fails with "Invalid value for 'TOOL_PATH'".
140
141**Decision rule** — which planemo command to use:
142- Workflow logic (.ga) changed → `planemo test` (full re-run, 10-30+ min)
143- Only assertions in tests YAML changed AND a recent successful invocation exists → `planemo workflow_test_on_invocation <invocation_id>` (re-verifies the test YAML against cached invocation outputs in seconds, no recompute)
144
145Extract the invocation ID from prior `planemo test` output: look for `Invocation <ID>` in the progress bar of the top-level invocation panel (the outer panel, not nested subworkflow panels). See `testing-guide.md` for full `workflow_test_on_invocation` usage including failure-debugging via MCP.
146
147#### Common Issues (Quick Reference)
148
149| Issue | Solution |
150|-------|----------|
151| Test "output not found" | Check output label matches exactly (case-sensitive) |
152| Large test files in repo | Upload to Zenodo, reference by URL with hash |
153| Workflow not generic | Replace hardcoded values with parameter inputs |
154| Tool update breaks workflow | Pin exact version in changeset_revision |
155| Tests pass locally, fail in CI | Check reference data availability on CVMFS |
156| Re-exported .ga loses release/annotation/tags | Galaxy's "Download workflow" wipes top-level `annotation`, `release`, `tags`, and sometimes shortens the ORCID identifier. Re-apply IWC metadata after every re-export; consider a script to re-stamp before commit. |
157| Planemo test keeps returning old error message | Stale stored workflow on Galaxy. Delete it via `DELETE /api/workflows/<id>` before re-running. See `testing-guide.md` Troubleshooting. |
158| Lint warnings | Run `planemo workflow_lint --iwc .` and address each |
159| `Directory not found` from `workflow_lint` | Pass the workflow directory (`.`), not a `.ga` filename — the lint command takes a path it walks for workflow files |
160| Cannot push to planemo-autoupdate branches | Edit via GitHub web UI, or push to own fork |
161| Tool version revert no effect | Disable `use_cached_job` in Galaxy preferences |
162
163### Version Bumping
164
165When updating a workflow:
1661. Update `release` field in .ga file
1672. Add entry to CHANGELOG.md
1683. Update tests if needed
1694. Commit with descriptive message
170
171### Deployment Pipeline
172
173After PR merge: Tests pass -> RO-Crate metadata generated -> Deployed to iwc-workflows -> Registered on Dockstore -> Registered on WorkflowHub -> Auto-installed on usegalaxy.* servers
174
175---
176
177## Export Workflow Construction
178
179### Key Rules
180
1811. **Workflow output labels cannot use variable interpolation** — `${Species Name}` only works in `RenameDatasetAction`, not in `workflow_outputs[].label`. Use static text for output labels.
182
1832. **Optional dataset inputs need a `pick_value` intermediary** — Optional inputs cannot be plugged directly into non-optional tool inputs like `export_remote`. Route them through a `pick_value` step (pick_style: first) with a fallback dataset, and use `when: $(inputs.when)` on the export step to gate execution.
184
1853. **Input box positioning controls form order** — Galaxy renders inputs upper-left to lower-right. Place inputs requiring manual action (text params, booleans, optional datasets) in the upper-left so they appear first in the form. Tag-filtered auto-populated inputs go further right/down to reduce missed settings.
186
187### Export Workflow Structure Pattern
188
189A typical VGP export workflow follows this structure:
190- **Parameter inputs**: Species Name, Assembly ID, Date, Destination (directory_uri)
191- **Boolean inputs**: Conditional flags (e.g., "Upload Annotations?", "Compress files?")
192- **Data inputs**: Tagged datasets from upstream workflows (auto-populated)
193- **Path creation subworkflow**: Builds base paths (root, tracks/, pretextmap/, alignments/, evaluation/)
194- **Compose text param steps**: Build full file paths from subdir + Assembly ID + infix + Date + extension
195- **Compress steps** (conditional): Optional fasta compression via pick_value
196- **Export remote steps**: Grouped by category (main files, evaluation, conditional annotations)
197
198---
199
200## Supporting References
201
202Detailed guidance is split into the following files in this directory:
203
204- **[iwc-standards.md](./iwc-standards.md)** - IWC repository structure, required files (.dockstore.yml, README, CHANGELOG), workflow categories, review checklist, IWC submission preparation (release numbers, runtime parameter cleanup)
205- **[testing-guide.md](./testing-guide.md)** - Complete testing reference: test file structure, assertion types/syntax, Planemo lint errors, remote testing, test data organization, synthetic data generation, troubleshooting tool failures, adjusting assertions
206- **[workflow-patterns.md](./workflow-patterns.md)** - Common workflow patterns, tool version migration in .ga files, ToolShed API for version discovery, tool update verification, writing methods sections for publications
207- **[galaxy-workflow-viz/](./galaxy-workflow-viz/)** - Generate Galaxy-branded SVG workflow diagrams (bezier connections, node cards, terminal positioning) for documentation, READMEs, and landing pages. See `galaxy-workflow-viz/SKILL.md` and `galaxy-workflow-viz/examples/` for style reference.
208
209---
210
211## Related Skills
212
213- **galaxy-tool-wrapping** - Creating Galaxy tools that can be used in workflows
214- **galaxy-automation** - BioBlend & Planemo foundation for workflow testing
215- **conda-recipe** - Building conda packages for workflow tool dependencies
216
217---
218
219## Applying This Knowledge
220
221When helping with Galaxy workflow development:
222
2231. **Creating new workflows**: Follow IWC structure and naming conventions
2242. **Writing tests**: Use appropriate assertions and test data management
2253. **Reviewing workflows**: Apply the review checklist systematically
2264. **Debugging**: Check lint output and test logs carefully
2275. **Updating workflows**: Maintain CHANGELOG and version properly
2286. **Documentation**: Write clear, detailed annotations and READMEs
229
230Always prioritize:
231- **Reproducibility**: Pin versions, hash test data
232- **Usability**: Human-readable names, clear documentation
233- **Quality**: Comprehensive tests, generic design
234- **Standards**: Follow IWC conventions strictly