Skip to content

Commit

Permalink
Add coordinate_space to Scene.create
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-dark committed Nov 18, 2024
1 parent 99b22f9 commit c72b2dc
Showing 1 changed file with 32 additions and 2 deletions.
34 changes: 32 additions & 2 deletions python-spec/src/somacore/scene.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
"""Implementation of the SOMA scene collection for spatial data"""

import abc
from typing import Generic, Optional, Sequence, TypeVar, Union
from typing import Any, Generic, Optional, Sequence, TypeVar, Union

from typing_extensions import Final
from typing_extensions import Final, Self

from . import _mixin
from . import base
from . import collection
from . import coordinates
from . import options
from . import spatial

_MultiscaleImage = TypeVar("_MultiscaleImage", bound=spatial.MultiscaleImage)
Expand Down Expand Up @@ -90,6 +91,35 @@ class Scene(
Lifecycle: experimental
"""

@classmethod
@abc.abstractmethod
def create(
cls,
uri: str,
*,
coordinate_space: Optional[
Union[Sequence[str], coordinates.CoordinateSpace]
] = None,
platform_config: Optional[options.PlatformConfig] = None,
context: Optional[Any] = None,
) -> Self:
"""Creates a new collection of this type at the given URI.
Args:
uri: The URI where the collection will be created.
coordinate_space: Optional coordinate space or the axis names for the
coordinate space the scene is defined on. Defaults to ``None``.
platform_config: platform-specific configuration; keys are SOMA
implementation names.
context: Other implementation-specific configuration.
Returns:
The newly created collection, opened for writing.
Lifecycle: experimental
"""
raise NotImplementedError()

@property
@abc.abstractmethod
def coordinate_space(self) -> Optional[coordinates.CoordinateSpace]:
Expand Down

0 comments on commit c72b2dc

Please sign in to comment.