Skip to main content

Python bindings to generate Gosling visualizations

Project description

gos 🦆

License PyPI tests

gos is a declarative genomics visualization library for Python. It is built on top of the Gosling JSON specification, providing a simplified interface for authoring interactive genomic visualizations.

Installation

The gos API is under active development. Feedback is appreciated and welcomed.

pip install gosling[all]

Documentation

See the Documentation Site for more information.

Example

Gosling visualization
import gosling as gos

data = gos.multivec(
    url="https://server.gosling-lang.org/api/v1/tileset_info/?d=cistrome-multivec",
    row="sample",
    column="position",
    value="peak",
    categories=["sample 1", "sample 2", "sample 3", "sample 4"],
    binSize=5,
)

base_track = gos.Track(data, width=800, height=100)

heatmap = base_track.mark_rect().encode(
    x=gos.X("start:G", axis="top"),
    xe="end:G",
    row=gos.Row("sample:N", legend=True),
    color=gos.Color("peak:Q", legend=True),
)

bars = base_track.mark_bar().encode(
    x=gos.X("position:G", axis="top"),
    y="peak:Q",
    row="sample:N",
    color=gos.Color("sample:N", legend=True),
)

lines = base_track.mark_line().encode(
    x=gos.X("position:G", axis="top"),
    y="peak:Q",
    row="sample:N",
    color=gos.Color("sample:N", legend=True),
)

gos.vertical(heatmap, bars, lines).properties(
    title="Visual Encoding",
    subtitle="Gosling provides diverse visual encoding methods",
    layout="linear",
    centerRadius=0.8,
    xDomain=gos.GenomicDomain(chromosome="1", interval=[1, 3000500]),
)

Example Gallery

We have started a gallery of community examples in gosling/examples/. If you are interested in contributing, please feel free to submit a PR! Checkout the existing JSON examples if you are looking for inspiration.

Changelog

Check the GitHub Releases for a detailed changelog.

Development

The source code for gos is a hybrid of Python and TypeScript (used for the anywidget component). It requires both:

  • uv (for Python development)
  • Deno (for building the widget)

Please ensure both are installed before proceeding.

Tests

Run the test suite with:

uv run pytest

Notebooks

To try out the library in the example notebooks/, launch Jupyter Lab with:

uv run jupyter lab

Widget

The widgets implementation is split between ./gosling/_widget.py (the Python component) and ./frontend/widget.ts (the TypeScript component).

To modify the widget's behavior in the front end, edit ./frontend/widget.ts and compile with:

deno task build

Use deno task dev to watch for changes and recompile automatically.

Docs

To build and preview the documentation locally:

uv run docs/build.py
uv run python -m http.server -d docs/dist

Open your browser to http://localhost:8000 to view the generated docs.

Auto-generate Schema Bindings

Much of the Python code in this repository is automatically generated from the Gosling schema to keep the bindings in sync. This includes both the bindings in gosling/schema/ and the corresponding API documentation in doc/user_guide/API.rst.

Do not edit these files manually. Instead, regenerate them using:

# Update gosling/schema/*
uv run tools/generate_schema_wrapper.py <tag_name>
# Update API docs
uv run tools/generate_api_docs.py

Use a tag_name that corresponds to a valid Gosling.js Release (e.g., v0.12.3).

You must commit the changes and create a new release. Schema updates usually require at least a minor version bump, but the exact versioning is up to the maintainer.

Release

Releases are managed via the GitHub UI. The release tag determines the package version published to PyPI.

Draft a new release:

  1. Create a tag

    • Click "Choose a tag", then type a new tag in the format v[major].[minor].[patch] to create it.
    • Note: The UI is not obvious about this. You can create a tag here, not just select one.
  2. Generate release notes

    • Click "Generate Release Notes" to auto-summarize changes from merged PRs.
    • Edit to exclude irrelevant changes for end users (e.g., docs or CI).
  3. Document significant changes

    • Add migration steps or noteworthy updates.
    • Ensure PR titles are clear and consistent.
  4. Publish the release

    • Click Publish release to make it public.
    • This triggers a workflow that builds the package and publishes it to PyPI using the new tag.

Design & Implementation

gos is inspired by and borrows heavily from Altair both in project philosophy and implementation. The internal Python API is auto-generated from the Gosling specification using code adapted directly from Altair to generate Vega-Lite bindings. This design choice guarantees that visualizations are type-checked in complete concordance with the Gosling specification, and that the Python API remains consistent with the evolving schema over time. Special thanks to Jake Vanderplas and others on schemapi.

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

gosling-0.3.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

gosling-0.3.0-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file gosling-0.3.0.tar.gz.

File metadata

  • Download URL: gosling-0.3.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gosling-0.3.0.tar.gz
Algorithm Hash digest
SHA256 477aa2c4bfc97acd221dcbc026422c9015b8c4a6f459b0e641c32f724e221e33
MD5 2420adb64afda7cb03e34664914978e9
BLAKE2b-256 cb8f8ed7fbdcb6b4173f86ce53971b819d7cb768a9a42bb9de0dea0e9f5801de

See more details on using hashes here.

Provenance

The following attestation bundles were made for gosling-0.3.0.tar.gz:

Publisher: release.yml on gosling-lang/gos

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

File details

Details for the file gosling-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: gosling-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gosling-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2d7dcbe0d6061571051282e10ab9c1a6263803d661597236f4b972741cf0acf9
MD5 1a1b8f4c9d19e57e866452090f181db7
BLAKE2b-256 02c2374a38aa51c96fb16fe6800ffda1965f86ae8bd60facf1ae3370931aea77

See more details on using hashes here.

Provenance

The following attestation bundles were made for gosling-0.3.0-py3-none-any.whl:

Publisher: release.yml on gosling-lang/gos

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page