CytoTable 0.0.14__py3-none-any.whl → 0.0.16__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.
- cytotable/__init__.py +13 -1
- cytotable/convert.py +3 -0
- cytotable/utils.py +0 -6
- {cytotable-0.0.14.dist-info → cytotable-0.0.16.dist-info}/METADATA +1 -1
- cytotable-0.0.16.dist-info/RECORD +11 -0
- {cytotable-0.0.14.dist-info → cytotable-0.0.16.dist-info}/WHEEL +1 -1
- cytotable-0.0.14.dist-info/RECORD +0 -11
- {cytotable-0.0.14.dist-info → cytotable-0.0.16.dist-info}/LICENSE +0 -0
cytotable/__init__.py
CHANGED
@@ -3,7 +3,19 @@ __init__.py for cytotable
|
|
3
3
|
"""
|
4
4
|
|
5
5
|
# note: version data is maintained by poetry-dynamic-versioning (do not edit)
|
6
|
-
__version__ = "0.0.
|
6
|
+
__version__ = "0.0.16"
|
7
|
+
|
8
|
+
# filter warnings about pkg_resources deprecation
|
9
|
+
# note: these stem from cloudpathlib google cloud
|
10
|
+
# dependencies.
|
11
|
+
import warnings
|
12
|
+
|
13
|
+
warnings.filterwarnings(
|
14
|
+
"ignore",
|
15
|
+
message=(".*pkg_resources is deprecated as an API.*"),
|
16
|
+
category=UserWarning,
|
17
|
+
module="google_crc32c.__config__",
|
18
|
+
)
|
7
19
|
|
8
20
|
from .convert import convert
|
9
21
|
from .exceptions import (
|
cytotable/convert.py
CHANGED
cytotable/utils.py
CHANGED
@@ -166,12 +166,6 @@ def _duckdb_reader() -> duckdb.DuckDBPyConnection:
|
|
166
166
|
https://duckdb.org/docs/sql/configuration#configuration-reference
|
167
167
|
*/
|
168
168
|
PRAGMA preserve_insertion_order=FALSE;
|
169
|
-
|
170
|
-
/*
|
171
|
-
Disable progress bar from displaying (defaults to TRUE)
|
172
|
-
See earlier documentation references above for more information.
|
173
|
-
*/
|
174
|
-
SET enable_progress_bar=FALSE;
|
175
169
|
""",
|
176
170
|
)
|
177
171
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: CytoTable
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.16
|
4
4
|
Summary: Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools.
|
5
5
|
License: BSD-3-Clause License
|
6
6
|
Keywords: python,cellprofiler,single-cell-analysis,way-lab
|
@@ -0,0 +1,11 @@
|
|
1
|
+
cytotable/__init__.py,sha256=vmv5EJuGq_uT2rxWTNSQqFC9O2vrmc9veRIc1Q1nGkM,615
|
2
|
+
cytotable/constants.py,sha256=w_AUm_fKKXeZjnZxbHf-dxq7NN7BkvCWbkGK24sfzLw,1872
|
3
|
+
cytotable/convert.py,sha256=uvdUM5-_cQCuTYA2RtWoA1_ZuGFmMQZUayChTRUWd5A,62916
|
4
|
+
cytotable/exceptions.py,sha256=NhkMswjCB0HeVHqlLXzBlyHunQIp_4eBFmyAPu0Nf30,482
|
5
|
+
cytotable/presets.py,sha256=pWYyZsEP-C1zbMUjTMzcJxCeRHcVpAAI-gMV2Nx-6Zc,16459
|
6
|
+
cytotable/sources.py,sha256=lScB3GPTIqDjl2Iea5zivjCEll9zYxJt1gIfj4WbCpQ,12959
|
7
|
+
cytotable/utils.py,sha256=Odlgp_ggeKrHd18v-v9FRiksybEF4JxwzWCXTp9FQ-o,28738
|
8
|
+
cytotable-0.0.16.dist-info/LICENSE,sha256=lPK3PtUMP-f1EOFMUr8h3FvuMh89x249Hvm4lchTsv0,1528
|
9
|
+
cytotable-0.0.16.dist-info/METADATA,sha256=9rHyyCeCJJ5DZfHKXl4eQCggVv9_LOf0lBUwNCSwTUY,3866
|
10
|
+
cytotable-0.0.16.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
11
|
+
cytotable-0.0.16.dist-info/RECORD,,
|
@@ -1,11 +0,0 @@
|
|
1
|
-
cytotable/__init__.py,sha256=7T2LQKZ2c628lj90EOk1oAPF-L0IvHS43PXLfsp-_mc,316
|
2
|
-
cytotable/constants.py,sha256=w_AUm_fKKXeZjnZxbHf-dxq7NN7BkvCWbkGK24sfzLw,1872
|
3
|
-
cytotable/convert.py,sha256=-LR-BQDew04VyuV2wtU831AAVfmWKe0h-65E3UAzGe0,62848
|
4
|
-
cytotable/exceptions.py,sha256=NhkMswjCB0HeVHqlLXzBlyHunQIp_4eBFmyAPu0Nf30,482
|
5
|
-
cytotable/presets.py,sha256=pWYyZsEP-C1zbMUjTMzcJxCeRHcVpAAI-gMV2Nx-6Zc,16459
|
6
|
-
cytotable/sources.py,sha256=lScB3GPTIqDjl2Iea5zivjCEll9zYxJt1gIfj4WbCpQ,12959
|
7
|
-
cytotable/utils.py,sha256=nH5CBY8thWS6eJtl_SZ059GmcE4rUExZMWelVgjZvho,28937
|
8
|
-
cytotable-0.0.14.dist-info/LICENSE,sha256=lPK3PtUMP-f1EOFMUr8h3FvuMh89x249Hvm4lchTsv0,1528
|
9
|
-
cytotable-0.0.14.dist-info/METADATA,sha256=8Rb-JIBc63Vvu8SYjGIa-pwAf4rZbGck4hyHlmC8c9s,3866
|
10
|
-
cytotable-0.0.14.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
11
|
-
cytotable-0.0.14.dist-info/RECORD,,
|
File without changes
|