cellprofiler-core-nightly 5.0.0.dev261__py3-none-any.whl → 5.0.0.dev265__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cellprofiler_core/_version.py +16 -3
- cellprofiler_core/modules/namesandtypes.py +2 -2
- {cellprofiler_core_nightly-5.0.0.dev261.dist-info → cellprofiler_core_nightly-5.0.0.dev265.dist-info}/METADATA +1 -1
- {cellprofiler_core_nightly-5.0.0.dev261.dist-info → cellprofiler_core_nightly-5.0.0.dev265.dist-info}/RECORD +7 -7
- {cellprofiler_core_nightly-5.0.0.dev261.dist-info → cellprofiler_core_nightly-5.0.0.dev265.dist-info}/WHEEL +0 -0
- {cellprofiler_core_nightly-5.0.0.dev261.dist-info → cellprofiler_core_nightly-5.0.0.dev265.dist-info}/licenses/LICENSE +0 -0
- {cellprofiler_core_nightly-5.0.0.dev261.dist-info → cellprofiler_core_nightly-5.0.0.dev265.dist-info}/top_level.txt +0 -0
cellprofiler_core/_version.py
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# file generated by setuptools-scm
|
|
2
2
|
# don't change, don't track in version control
|
|
3
3
|
|
|
4
|
-
__all__ = [
|
|
4
|
+
__all__ = [
|
|
5
|
+
"__version__",
|
|
6
|
+
"__version_tuple__",
|
|
7
|
+
"version",
|
|
8
|
+
"version_tuple",
|
|
9
|
+
"__commit_id__",
|
|
10
|
+
"commit_id",
|
|
11
|
+
]
|
|
5
12
|
|
|
6
13
|
TYPE_CHECKING = False
|
|
7
14
|
if TYPE_CHECKING:
|
|
@@ -9,13 +16,19 @@ if TYPE_CHECKING:
|
|
|
9
16
|
from typing import Union
|
|
10
17
|
|
|
11
18
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
+
COMMIT_ID = Union[str, None]
|
|
12
20
|
else:
|
|
13
21
|
VERSION_TUPLE = object
|
|
22
|
+
COMMIT_ID = object
|
|
14
23
|
|
|
15
24
|
version: str
|
|
16
25
|
__version__: str
|
|
17
26
|
__version_tuple__: VERSION_TUPLE
|
|
18
27
|
version_tuple: VERSION_TUPLE
|
|
28
|
+
commit_id: COMMIT_ID
|
|
29
|
+
__commit_id__: COMMIT_ID
|
|
19
30
|
|
|
20
|
-
__version__ = version = '5.0.0.
|
|
21
|
-
__version_tuple__ = version_tuple = (5, 0, 0, '
|
|
31
|
+
__version__ = version = '5.0.0.dev265'
|
|
32
|
+
__version_tuple__ = version_tuple = (5, 0, 0, 'dev265')
|
|
33
|
+
|
|
34
|
+
__commit_id__ = commit_id = None
|
|
@@ -1174,9 +1174,9 @@ requests an object selection.
|
|
|
1174
1174
|
for feature, data_type in required.items():
|
|
1175
1175
|
values = aggregated[feature]
|
|
1176
1176
|
if data_type == COLTYPE_INTEGER:
|
|
1177
|
-
values = [int(v) for v in values]
|
|
1177
|
+
values = [int(v) if v is not None else v for v in values]
|
|
1178
1178
|
elif data_type == COLTYPE_FLOAT:
|
|
1179
|
-
values = [float(v) for v in values]
|
|
1179
|
+
values = [float(v) if v is not None else v for v in values]
|
|
1180
1180
|
m.add_all_measurements("Image", feature, values)
|
|
1181
1181
|
|
|
1182
1182
|
@staticmethod
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cellprofiler-core-nightly
|
|
3
|
-
Version: 5.0.0.
|
|
3
|
+
Version: 5.0.0.dev265
|
|
4
4
|
Summary: cellprofiler-core implements the bulk of CellProfiler's non-gui functionality
|
|
5
5
|
Author: Anne Carpenter, Thouis (Ray) Jones, Lee Kamentsky, Vebjorn Ljosa, David Logan, Mark Bray, Madison Swain-Bowden, Allen Goodman, Claire McQuinn, Alice Lucas, Callum Tromans-Coia
|
|
6
6
|
Author-email: Beth Cimini <bcimini@broadinstitute.org>, David Stirling <dstirling@glencoesoftware.com>, Nodar Gogoberidze <ngogober@broadinstitute.org>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cellprofiler_core/__init__.py,sha256=_3kgQS8726Qn6s5G3k9qO5lP70iGHpCjCfN8WOZUmOY,51
|
|
2
2
|
cellprofiler_core/__main__.py,sha256=TA41EatBuwAZ4DhfTnq8sJJzxdov9fBN_j7g9hvMJeo,1221
|
|
3
|
-
cellprofiler_core/_version.py,sha256=
|
|
3
|
+
cellprofiler_core/_version.py,sha256=oQvpVDsWUhaqcCL7cL75iNqq-cvJv-uME315MOU-q2E,721
|
|
4
4
|
cellprofiler_core/analysis/__init__.py,sha256=3q_bxjv7sGtXWFGULDj1AB3Ntx7A3HPctk_sr6gL6Wo,694
|
|
5
5
|
cellprofiler_core/analysis/_analysis.py,sha256=sKKK91ov5T1OuYaejvX8rM_Uk-2ggbkAPRji3cuL3SM,4259
|
|
6
6
|
cellprofiler_core/analysis/_runner.py,sha256=UAV_In9l6RXzud0qWG-uDPPi8-WTydhDEgqMGeOWT5w,31610
|
|
@@ -104,7 +104,7 @@ cellprofiler_core/modules/injectimage.py,sha256=Wev2r_8sV5hVLT3AYWNfIKgoaeVedopW
|
|
|
104
104
|
cellprofiler_core/modules/loaddata.py,sha256=GQukMAK-NsH_3YOH-Foq69fK1dNzl5ZD0jBcptoCNxc,62105
|
|
105
105
|
cellprofiler_core/modules/measurementfixture.py,sha256=gzvaYdegBOgXsejBgZ5DkkgzboHWaiyQQTTsYaipq1k,637
|
|
106
106
|
cellprofiler_core/modules/metadata.py,sha256=3DxK5KLsSQvdQBLluXimz5XSpWdomuNrj6pP_LaDC8s,60589
|
|
107
|
-
cellprofiler_core/modules/namesandtypes.py,sha256=
|
|
107
|
+
cellprofiler_core/modules/namesandtypes.py,sha256=Y7cGhPAxf97TanTNRt6GK95cbYg1esGyWcvp6-ruErc,84378
|
|
108
108
|
cellprofiler_core/modules/setting_validation.py,sha256=am43f8-6iR0mwy1VIdxkWc2ytp5dmmclq88bQEL9I2c,903
|
|
109
109
|
cellprofiler_core/object/__init__.py,sha256=m-9neZy0KsUmKy3vLXGzXCFeN6ni3oMCJ6iSfXAvhoc,105
|
|
110
110
|
cellprofiler_core/object/_object_set.py,sha256=tMBzCJS2LA_4uWao-XEyIrFUIrWw4a6olVTJsj1ZN4M,3056
|
|
@@ -305,8 +305,8 @@ cellprofiler_core/worker/_worker.py,sha256=-DGKaU8J91OrQvjoPdLqHPhmtXznIoxK2oxQP
|
|
|
305
305
|
cellprofiler_core/workspace/__init__.py,sha256=_J7VJAGoTcSYMt5YB_Ol_JZJXkSj1shvUZpIqN4B6ew,98
|
|
306
306
|
cellprofiler_core/workspace/_disposition_changed_event.py,sha256=7l2ewpHRhv0ErQvwGi7ifb9MZOX2iwvS-ttRmZpZP9Q,107
|
|
307
307
|
cellprofiler_core/workspace/_workspace.py,sha256=GdnVgpnk3UL71qoKm8xvjuss6QvZ2t_K0xE8X0EqHLc,21602
|
|
308
|
-
cellprofiler_core_nightly-5.0.0.
|
|
309
|
-
cellprofiler_core_nightly-5.0.0.
|
|
310
|
-
cellprofiler_core_nightly-5.0.0.
|
|
311
|
-
cellprofiler_core_nightly-5.0.0.
|
|
312
|
-
cellprofiler_core_nightly-5.0.0.
|
|
308
|
+
cellprofiler_core_nightly-5.0.0.dev265.dist-info/licenses/LICENSE,sha256=QLWaBS7kAioYx7PmJNXAMJaY8NODcFAag60YlUWuyz0,2276
|
|
309
|
+
cellprofiler_core_nightly-5.0.0.dev265.dist-info/METADATA,sha256=wkPoivKo5ZgnSl35xaTp6Dtu8PxeCb03bLDrb3-jqms,5892
|
|
310
|
+
cellprofiler_core_nightly-5.0.0.dev265.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
311
|
+
cellprofiler_core_nightly-5.0.0.dev265.dist-info/top_level.txt,sha256=Cyr_eRUfEUpSmpsWAZAZGBqgRcpgnNrvD5DmkMDmCQk,18
|
|
312
|
+
cellprofiler_core_nightly-5.0.0.dev265.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|