Skip to content

Commit

Permalink
Merge pull request #105 from ckmah/v2.1
Browse files Browse the repository at this point in the history
V2.1
  • Loading branch information
ckmah authored Apr 26, 2024
2 parents ed851d1 + 5038087 commit 05184fd
Show file tree
Hide file tree
Showing 317 changed files with 10,590 additions and 5,025 deletions.
Empty file modified .github/workflows/publish_pypi.yml
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os : [ubuntu-22.04, macos-11, macos-12, windows-2019]
python-version: ['3.8', '3.9']
python-version: ['3.9', '3.10']
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,13 @@ dmypy.json

# Pyre type checker
.pyre/

tests/img
docs/build.zip
tests/data/processed/data.pt
tests/data/processed/pre_filter.pt
tests/data/processed/pre_transform.pt
.DS_Store

requirements.lock
requirements-dev.lock
5 changes: 3 additions & 2 deletions .readthedocs.yml
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
version: 2
build:
image: latest
os: ubuntu-22.04
tools:
python: "3.10"
sphinx:
configuration: docs/source/conf.py
python:
version: 3.8
install:
- method: pip
path: .
Expand Down
Empty file modified MANIFEST.in
100755 → 100644
Empty file.
Empty file modified README.md
100755 → 100644
Empty file.
9 changes: 4 additions & 5 deletions bento/__init__.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
from . import datasets as ds
from . import io
from . import plotting as pl
from . import tools as tl
from . import _utils as ut
from . import geometry as geo
from . import plotting as pl
from . import tools as tl
from . import datasets as ds
from . import io
from .plotting import _colors as colors
from ._utils import sync
15 changes: 0 additions & 15 deletions bento/_constants.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
PATTERN_COLORS = ["#17becf", "#1f77b4", "#7f7f7f", "#ff7f0e", "#d62728"]
PATTERN_NAMES = ["cell_edge", "cytoplasmic", "none", "nuclear", "nuclear_edge"]
PATTERN_PROBS = [f"{p}_p" for p in PATTERN_NAMES]
PATTERN_FEATURES = [
"cell_inner_proximity",
"nucleus_inner_proximity",
"nucleus_outer_proximity",
"cell_inner_asymmetry",
"nucleus_inner_asymmetry",
"nucleus_outer_asymmetry",
"l_max",
"l_max_gradient",
"l_min_gradient",
"l_monotony",
"l_half_radius",
"point_dispersion_norm",
"nucleus_dispersion_norm",
]
Loading

0 comments on commit 05184fd

Please sign in to comment.