Opinionated formatter for Galaxy tool XML — tier 3 of the galaxy-tool-source ecosystem.
Project description
galaxy-tool-fmt
A black-like opinionated cosmetic formatter for Galaxy tool XML — and for
macro-library files (<macros> root), which get the kind-applicable rules
(indentation, empty-element shorthand) per RuleMeta.applies_to.
The formatting tier of the Galaxy refactoring architecture:
| Tier | Layer | Package | Role |
|---|---|---|---|
| 0.5 | rule metadata | galaxy-tool-refactor-rules |
shared RuleMeta descriptor |
| 1 | parsing & validation | galaxy-tool-source |
parse · profile-aware validate · typed view |
| 2 | structure | galaxy-tool-codemod |
structural refactors |
| 3 | formatting | galaxy-tool-fmt (this repo) |
cosmetic formatter |
| 3.5 | advisory checks | galaxy-tool-lint |
detect-only checks |
| 3.6 | rule registry / rulesets | galaxy-tool-refactor-registry |
unified rules + rulesets (facade) |
| 4 | app / CLI | galaxy-tool-refactor-cli |
composes the tiers via the facade (format / upgrade / check) |
Status
The format pipeline and three cosmetic rules ship; the cosmetic-only
galaxy-tool-fmt CLI is working. Structural canonicalisation
(attribute reordering on <tool> and <param>) and profile upgrades
live in tier 2 and are run by the tier-4 app
(galaxy-tool-refactor), not by this package's CLI.
The most recent cosmetic-pipeline sweep ran over the combined corpus
(github + toolshed, sha256-deduplicated): 9,358 unique <tool> documents,
of which 8,608 validate under at least one vendored profile and were
format-checked — 100% idempotent, 0 crashes, 0 regression fixtures
retained. Full numbers in docs/corpus_format_stats.md.
Role in the architecture
galaxy-tool-fmt is the only component that writes Galaxy
tool XML to disk. The lower tiers hand off mutable lxml trees with
preserved trivia (CDATA, comments, attribute order, encoding); this
tier owns the trivia-loss boundary: a format pass on a touched file
will rewrite indentation / quote style / empty-element shorthand to
the project's opinion, even when the structural change was a no-op.
The design rationale lives in galaxy-tool-source/docs/decisions.md
§3 (lxml-as-source-of-truth) and §9 (three-tier vision); the
cosmetic-only CLI split is docs/decisions.md §D12.
Cosmetic rules shipping (library)
| Code | Summary | Source |
|---|---|---|
| GTR001 | Canonical 4-space indentation | IUC tool-XML style |
| GTR003 | One blank line between top-level <tool> children |
editorial |
| GTR004 | Collapse whitespace-only leaves to <foo/> form |
editorial |
D7 and D8 in docs/decisions.md cover two policies — always-double-
quote attributes and one-line-per-element layout — that lxml's
serializer enforces by default; both are locked in by tests but
ship no GTR rule.
The earlier GTR002 (<param> attribute order) and GTR005 (<tool>
attribute order) were structural, not cosmetic, and have moved
to galaxy-tool-codemod as ReorderParamAttributes and
ReorderToolAttributes. They're applied by the tier-4 app's
galaxy-tool-refactor format command, not by this package's CLI.
Library API
format_tool_document(document: ToolDocument) -> bytes (imported
from galaxy_tool_fmt.format). The function mutates the
document's lxml tree in place with the cosmetic rules above and
returns the canonical-form bytes. No structural mutations — to
apply the canonical structural pipeline programmatically, run
galaxy_tool_codemod.canonical.canonical_codemods() against the
document yourself before calling format_tool_document, or use the
tier-4 galaxy-tool-refactor format command, which does exactly that.
CLI
galaxy-tool-fmt path/to/tool.xml
The CLI mirrors black's ergonomics: positional FILE/DIR args
(directories expand to *.xml recursively), --check, --diff,
--quiet. It is cosmetic-only: it applies fmt's cosmetic rules
and never runs codemods. For structural canonicalisation or profile
upgrades, use the tier-4 app (galaxy-tool-refactor format /
galaxy-tool-refactor upgrade).
The shared file-walking / drift-detection engine lives in
galaxy_tool_fmt.cli_support (public); both this CLI and the
app's format/upgrade commands use it.
Setup
From the workspace root:
uv sync # workspace dev install (all eight packages)
uv run pytest
End-user install:
pip install galaxy-tool-fmt
Corpus QA
Two relevant subcommands of scripts/corpus_check.py:
corpus_check.py fmt— sweeps fmt's cosmetic-pipeline idempotence.corpus_check.py codemod <dotted:Class>— sweeps a structural codemod (tier 2) and retains failures as fixtures undergalaxy-tool-codemod/tests/data/regressions/.
Run uv run python -m scripts.corpus_check --help for the flags.
Coding standards
Hand-written code follows dignified-python (vendored at
.claude/skills/dignified-python/). See CLAUDE.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file galaxy_tool_fmt-0.2.0.tar.gz.
File metadata
- Download URL: galaxy_tool_fmt-0.2.0.tar.gz
- Upload date:
- Size: 125.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15d829b263782711db60c97ba0851c8d71da81977590efcf33539abfe11cc3d6
|
|
| MD5 |
8ad0c7cd888136422942d335fcaca8be
|
|
| BLAKE2b-256 |
5063197ce53635b9066c197fea46e978780d036961857badf6f055d751601fd8
|
Provenance
The following attestation bundles were made for galaxy_tool_fmt-0.2.0.tar.gz:
Publisher:
release.yml on richard-burhans/galaxy-tool-refactor
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
galaxy_tool_fmt-0.2.0.tar.gz -
Subject digest:
15d829b263782711db60c97ba0851c8d71da81977590efcf33539abfe11cc3d6 - Sigstore transparency entry: 1792655423
- Sigstore integration time:
-
Permalink:
richard-burhans/galaxy-tool-refactor@524c6b6ee8dba405f5d3b1d192d120d996140a65 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/richard-burhans
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@524c6b6ee8dba405f5d3b1d192d120d996140a65 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file galaxy_tool_fmt-0.2.0-py3-none-any.whl.
File metadata
- Download URL: galaxy_tool_fmt-0.2.0-py3-none-any.whl
- Upload date:
- Size: 24.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aca4e9fff628561cad533b3ba048e9ceef47082492186fcb043e8ace95e37be2
|
|
| MD5 |
1bb54b2a26f9a00944dd24506ae8fda0
|
|
| BLAKE2b-256 |
d4de8bb80d4682f37eb9ff8e9c81e736c698b08270743c0c50c4221632c588d2
|
Provenance
The following attestation bundles were made for galaxy_tool_fmt-0.2.0-py3-none-any.whl:
Publisher:
release.yml on richard-burhans/galaxy-tool-refactor
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
galaxy_tool_fmt-0.2.0-py3-none-any.whl -
Subject digest:
aca4e9fff628561cad533b3ba048e9ceef47082492186fcb043e8ace95e37be2 - Sigstore transparency entry: 1792655536
- Sigstore integration time:
-
Permalink:
richard-burhans/galaxy-tool-refactor@524c6b6ee8dba405f5d3b1d192d120d996140a65 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/richard-burhans
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@524c6b6ee8dba405f5d3b1d192d120d996140a65 -
Trigger Event:
workflow_dispatch
-
Statement type: