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'}