Skip to main content

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
GTR004 Collapse whitespace-only leaves to <foo/> form editorial
GTR003 One blank line between top-level <tool> children editorial — PARKED pending IUC input (§D4)

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 under galaxy-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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

galaxy_tool_fmt-0.3.1.tar.gz (128.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

galaxy_tool_fmt-0.3.1-py3-none-any.whl (24.6 kB view details)

Uploaded Python 3

File details

Details for the file galaxy_tool_fmt-0.3.1.tar.gz.

File metadata

  • Download URL: galaxy_tool_fmt-0.3.1.tar.gz
  • Upload date:
  • Size: 128.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for galaxy_tool_fmt-0.3.1.tar.gz
Algorithm Hash digest
SHA256 22d6e2a56cae6854a6db9c9ba650fe093473db46261bca02ceb4a1121fc0d3b6
MD5 9a14a7811c723ccaaac4b436e5d8ce3a
BLAKE2b-256 4fed924aca859b46d996a7de57373f898bb1568ba7c8b7961e8f6f6c664c3485

See more details on using hashes here.

Provenance

The following attestation bundles were made for galaxy_tool_fmt-0.3.1.tar.gz:

Publisher: release.yml on richard-burhans/galaxy-tool-refactor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file galaxy_tool_fmt-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: galaxy_tool_fmt-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 24.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for galaxy_tool_fmt-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 96b6c79fa195675614a5a25b0571a07cecb48c1618d7918da202b369eea365a6
MD5 249e3fa576bb5832446e41bd1a1b7be8
BLAKE2b-256 1332a001bf0c507a5a63168601d8612539bb3787661d558df0bed3596169af6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for galaxy_tool_fmt-0.3.1-py3-none-any.whl:

Publisher: release.yml on richard-burhans/galaxy-tool-refactor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page