Skip to content

[EXPERIMENTAL]: Integrate cp-measure #982

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 21 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ dependencies = [
"xarray>=2024.10.0",
"zarr>=2.6.1,<3.0.0",
"spatialdata>=0.2.5",
"centrosome>=1.2.3",
"cp_measure>=0.1.4"
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/squidpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from importlib import metadata
from importlib.metadata import PackageMetadata

from squidpy import datasets, gr, im, pl, read, tl
from squidpy import datasets, exp, gr, im, pl, read, tl

try:
md: PackageMetadata = metadata.metadata(__name__)
Expand Down
11 changes: 11 additions & 0 deletions src/squidpy/exp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""Experimental module for Squidpy.

This module contains experimental features that are still under development.
These features may change or be removed in future releases.
"""

from __future__ import annotations

from squidpy.exp._feature import calculate_image_features

__all__ = ["calculate_image_features"]
Loading
Loading