From c88a433574b5f5f7bac5f06419b55fda5147672e Mon Sep 17 00:00:00 2001 From: Trevor Manz Date: Tue, 4 Jun 2024 10:40:09 -0400 Subject: [PATCH] feat: Bump Gosling.js to `v0.17.0` (#155) Co-authored-by: manzt --- doc/user_guide/API.rst | 3 +++ gosling/schema/__init__.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/user_guide/API.rst b/doc/user_guide/API.rst index 9408532..4a66547 100644 --- a/doc/user_guide/API.rst +++ b/doc/user_guide/API.rst @@ -98,12 +98,15 @@ Low-Level Schema Wrappers DomainChr DomainChrInterval DomainInterval + DummyTrack + DummyTrackStyle EventStyle ExonSplitTransform FieldType FilterTransform GenomicDomain GenomicLengthTransform + GffData GoslingSchema GoslingSpec IncludeFilter diff --git a/gosling/schema/__init__.py b/gosling/schema/__init__.py index c6f24ab..2e6b3b9 100644 --- a/gosling/schema/__init__.py +++ b/gosling/schema/__init__.py @@ -1,6 +1,6 @@ # flake8: noqa from .core import * from .channels import * -SCHEMA_VERSION = 'v0.16.0' -SCHEMA_URL = 'https://raw.githubusercontent.com/gosling-lang/gosling.js/v0.16.0/src/gosling-schema/gosling.schema.json' +SCHEMA_VERSION = 'v0.17.0' +SCHEMA_URL = 'https://raw.githubusercontent.com/gosling-lang/gosling.js/v0.17.0/src/gosling-schema/gosling.schema.json' THEMES = {'dark', 'ensembl', 'excel', 'ggplot', 'google', 'igv', 'jbrowse', 'light', 'ucsc', 'warm', 'washu'}