-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from ckmah/v2.1
V2.1
- Loading branch information
Showing
317 changed files
with
10,590 additions
and
5,025 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
] |
Oops, something went wrong.