lamindb 0.74.1__py3-none-any.whl → 0.74.2__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.
- lamindb/__init__.py +8 -5
- lamindb/_artifact.py +31 -41
- lamindb/_can_validate.py +24 -22
- lamindb/_collection.py +5 -6
- lamindb/{_annotate.py → _curate.py} +62 -40
- lamindb/_feature.py +7 -9
- lamindb/_feature_set.py +17 -18
- lamindb/_filter.py +5 -5
- lamindb/_finish.py +18 -6
- lamindb/_from_values.py +12 -12
- lamindb/_is_versioned.py +2 -2
- lamindb/_parents.py +7 -7
- lamindb/_query_manager.py +7 -7
- lamindb/_query_set.py +27 -27
- lamindb/{_registry.py → _record.py} +89 -48
- lamindb/_save.py +6 -6
- lamindb/_storage.py +1 -1
- lamindb/_view.py +4 -4
- lamindb/core/__init__.py +16 -12
- lamindb/core/_data.py +10 -10
- lamindb/core/_feature_manager.py +48 -31
- lamindb/core/_label_manager.py +5 -5
- lamindb/core/_mapped_collection.py +4 -1
- lamindb/core/_run_context.py +2 -2
- lamindb/core/_settings.py +2 -1
- lamindb/core/_sync_git.py +22 -12
- lamindb/core/_track_environment.py +5 -1
- lamindb/core/fields.py +1 -1
- lamindb/core/schema.py +6 -6
- lamindb/core/storage/_backed_access.py +56 -12
- lamindb/core/storage/paths.py +1 -1
- lamindb/core/versioning.py +1 -1
- lamindb/integrations/_vitessce.py +4 -3
- {lamindb-0.74.1.dist-info → lamindb-0.74.2.dist-info}/METADATA +5 -7
- lamindb-0.74.2.dist-info/RECORD +57 -0
- lamindb-0.74.1.dist-info/RECORD +0 -57
- {lamindb-0.74.1.dist-info → lamindb-0.74.2.dist-info}/LICENSE +0 -0
- {lamindb-0.74.1.dist-info → lamindb-0.74.2.dist-info}/WHEEL +0 -0
@@ -28,6 +28,8 @@ if TYPE_CHECKING:
|
|
28
28
|
from pathlib import Path
|
29
29
|
|
30
30
|
from fsspec.core import OpenFile
|
31
|
+
from tiledbsoma import Collection as SOMACollection
|
32
|
+
from tiledbsoma import Experiment as SOMAExperiment
|
31
33
|
|
32
34
|
anndata_version_parse = version.parse(anndata_version)
|
33
35
|
|
@@ -100,7 +102,7 @@ def _records_to_df(obj):
|
|
100
102
|
return obj
|
101
103
|
|
102
104
|
|
103
|
-
class
|
105
|
+
class AccessRecord:
|
104
106
|
def __init__(self):
|
105
107
|
self._registry = {}
|
106
108
|
self._openers = {}
|
@@ -141,7 +143,7 @@ class AccessRegistry:
|
|
141
143
|
|
142
144
|
|
143
145
|
# storage specific functions should be registered and called through the registry
|
144
|
-
registry =
|
146
|
+
registry = AccessRecord()
|
145
147
|
|
146
148
|
|
147
149
|
@registry.register_open("h5py")
|
@@ -207,8 +209,10 @@ def safer_read_partial(elem, indices):
|
|
207
209
|
try:
|
208
210
|
ds = CSRDataset(elem)
|
209
211
|
result = _subset_sparse(ds, indices)
|
210
|
-
except Exception:
|
211
|
-
|
212
|
+
except Exception as e:
|
213
|
+
logger.debug(
|
214
|
+
f"Encountered an exception while attempting to subset a sparse dataset by indices.\n{e}"
|
215
|
+
)
|
212
216
|
if result is None:
|
213
217
|
raise ValueError(
|
214
218
|
"Can not get a subset of the element of type"
|
@@ -305,8 +309,10 @@ if ZARR_INSTALLED:
|
|
305
309
|
try:
|
306
310
|
ds = CSRDataset(elem)
|
307
311
|
return _subset_sparse(ds, indices)
|
308
|
-
except Exception:
|
309
|
-
|
312
|
+
except Exception as e:
|
313
|
+
logger.debug(
|
314
|
+
f"Encountered an exception while attempting to subset a sparse dataset by indices.\n{e}"
|
315
|
+
)
|
310
316
|
raise ValueError(
|
311
317
|
"Can not get a subset of the element of type"
|
312
318
|
f" {type(elem).__name__} with an empty spec."
|
@@ -734,24 +740,62 @@ class BackedAccessor:
|
|
734
740
|
|
735
741
|
def backed_access(
|
736
742
|
artifact_or_filepath: Artifact | Path, using_key: str | None = None
|
737
|
-
) -> AnnDataAccessor | BackedAccessor:
|
743
|
+
) -> AnnDataAccessor | BackedAccessor | SOMACollection | SOMAExperiment:
|
738
744
|
if isinstance(artifact_or_filepath, Artifact):
|
739
745
|
filepath = filepath_from_artifact(artifact_or_filepath, using_key=using_key)
|
740
746
|
else:
|
741
747
|
filepath = artifact_or_filepath
|
742
748
|
name = filepath.name
|
749
|
+
suffix = filepath.suffix
|
750
|
+
|
751
|
+
if name == "soma" or suffix == ".tiledbsoma":
|
752
|
+
try:
|
753
|
+
import tiledbsoma as soma
|
754
|
+
except ImportError as e:
|
755
|
+
raise ImportError(
|
756
|
+
"Please install tiledbsoma: pip install tiledbsoma"
|
757
|
+
) from e
|
758
|
+
filepath_str = filepath.as_posix()
|
759
|
+
if filepath.protocol == "s3":
|
760
|
+
from lamindb_setup.core._settings_storage import get_storage_region
|
761
|
+
|
762
|
+
region = get_storage_region(filepath_str)
|
763
|
+
tiledb_config = {"vfs.s3.region": region}
|
764
|
+
storage_options = filepath.storage_options
|
765
|
+
if "key" in storage_options:
|
766
|
+
tiledb_config["vfs.s3.aws_access_key_id"] = storage_options["key"]
|
767
|
+
if "secret" in storage_options:
|
768
|
+
tiledb_config["vfs.s3.aws_secret_access_key"] = storage_options[
|
769
|
+
"secret"
|
770
|
+
]
|
771
|
+
if "token" in storage_options:
|
772
|
+
tiledb_config["vfs.s3.aws_session_token"] = storage_options["token"]
|
773
|
+
ctx = soma.SOMATileDBContext(tiledb_config=tiledb_config)
|
774
|
+
# this is a strange bug
|
775
|
+
# for some reason iterdir futher gives incorrect results
|
776
|
+
# if cache is not invalidated
|
777
|
+
# instead of obs and ms it gives ms and ms in the list of names
|
778
|
+
filepath.fs.invalidate_cache()
|
779
|
+
else:
|
780
|
+
ctx = None
|
743
781
|
|
744
|
-
|
782
|
+
soma_objects = [obj.name for obj in filepath.iterdir()]
|
783
|
+
if "obs" in soma_objects and "ms" in soma_objects:
|
784
|
+
SOMAType = soma.Experiment
|
785
|
+
else:
|
786
|
+
SOMAType = soma.Collection
|
787
|
+
return SOMAType.open(filepath_str, context=ctx)
|
788
|
+
elif suffix in {".h5", ".hdf5", ".h5ad"}:
|
745
789
|
conn, storage = registry.open("h5py", filepath)
|
746
|
-
elif
|
790
|
+
elif suffix == ".zarr":
|
747
791
|
conn, storage = registry.open("zarr", filepath)
|
748
792
|
else:
|
749
793
|
raise ValueError(
|
750
|
-
"object should have .h5, .hdf5, .h5ad, .zarr suffix, not"
|
751
|
-
f" {
|
794
|
+
"object should have .h5, .hdf5, .h5ad, .zarr, .tiledbsoma suffix, not"
|
795
|
+
f" {suffix}."
|
752
796
|
)
|
753
797
|
|
754
|
-
if
|
798
|
+
if suffix == ".h5ad":
|
755
799
|
return AnnDataAccessor(conn, storage, name)
|
756
800
|
else:
|
757
801
|
if get_spec(storage).encoding_type == "anndata":
|
lamindb/core/storage/paths.py
CHANGED
@@ -47,7 +47,7 @@ def auto_storage_key_from_artifact(artifact: Artifact):
|
|
47
47
|
|
48
48
|
|
49
49
|
def auto_storage_key_from_artifact_uid(uid: str, suffix: str, is_dir: bool) -> str:
|
50
|
-
assert isinstance(suffix, str)
|
50
|
+
assert isinstance(suffix, str) # noqa: S101 Suffix cannot be None.
|
51
51
|
if is_dir:
|
52
52
|
uid_storage = uid[:16] # 16 chars, leave 4 chars for versioning
|
53
53
|
else:
|
lamindb/core/versioning.py
CHANGED
@@ -39,9 +39,10 @@ def save_vitessce_config(vitessce_config: VitessceConfig, description: str) -> A
|
|
39
39
|
if "url" not in file:
|
40
40
|
raise ValueError("Each file must have a 'url' key.")
|
41
41
|
filename = file["url"].split("/")[-1]
|
42
|
-
|
43
|
-
(
|
44
|
-
|
42
|
+
if not filename.endswith((".anndata.zarr", ".zarr", ".ome.zarr")):
|
43
|
+
logger.warning(
|
44
|
+
"filename should end with '.anndata.zarr', '.zarr', or '.ome.zarr'."
|
45
|
+
)
|
45
46
|
filestem = (
|
46
47
|
filename.replace(".anndata.zarr", "")
|
47
48
|
.replace(".spatialdata.zarr", "")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lamindb
|
3
|
-
Version: 0.74.
|
3
|
+
Version: 0.74.2
|
4
4
|
Summary: A data framework for biology.
|
5
5
|
Author-email: Lamin Labs <open-source@lamin.ai>
|
6
6
|
Requires-Python: >=3.8
|
@@ -9,10 +9,10 @@ Classifier: Programming Language :: Python :: 3.8
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.9
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
12
|
-
Requires-Dist: lnschema_core==0.70.
|
13
|
-
Requires-Dist: lamindb_setup==0.
|
12
|
+
Requires-Dist: lnschema_core==0.70.5
|
13
|
+
Requires-Dist: lamindb_setup==0.74.1
|
14
14
|
Requires-Dist: lamin_utils==0.13.2
|
15
|
-
Requires-Dist: lamin_cli==0.
|
15
|
+
Requires-Dist: lamin_cli==0.15.0
|
16
16
|
Requires-Dist: rapidfuzz
|
17
17
|
Requires-Dist: pyarrow
|
18
18
|
Requires-Dist: typing_extensions!=4.6.0
|
@@ -23,10 +23,8 @@ Requires-Dist: fsspec
|
|
23
23
|
Requires-Dist: pandas
|
24
24
|
Requires-Dist: graphviz
|
25
25
|
Requires-Dist: psycopg2-binary
|
26
|
-
Requires-Dist: psutil
|
27
26
|
Requires-Dist: lamindb_setup[aws] ; extra == "aws"
|
28
|
-
Requires-Dist: bionty==0.44.
|
29
|
-
Requires-Dist: pandas<2 ; extra == "dev"
|
27
|
+
Requires-Dist: bionty==0.44.2 ; extra == "bionty"
|
30
28
|
Requires-Dist: pre-commit ; extra == "dev"
|
31
29
|
Requires-Dist: nox ; extra == "dev"
|
32
30
|
Requires-Dist: laminci>=0.3 ; extra == "dev"
|
@@ -0,0 +1,57 @@
|
|
1
|
+
lamindb/__init__.py,sha256=N8c6LCD-NLi9UTsmkOIvRcPOdu183747G8mdfsLfNJI,2249
|
2
|
+
lamindb/_artifact.py,sha256=pdSMBuZnlr-Jfot8p90x7TEbto-viXyryax5p1FljEs,40133
|
3
|
+
lamindb/_can_validate.py,sha256=CUu-lBY9XnSYGWiazYhLMW5H0LuuR86mVbU7UnIZTVU,15010
|
4
|
+
lamindb/_collection.py,sha256=P4UjZxC2OcViTmqSeW3NIiXU3C0ZF5BF9P6YcchS2Zg,14617
|
5
|
+
lamindb/_curate.py,sha256=i3pqkNvgXtOXXmw7zPgnr7BT3KnZDBw8DyxuyPkhwbo,44898
|
6
|
+
lamindb/_feature.py,sha256=hLj5KDhIVkZrIa7IbiHGyUBGZS7PeDNxKsNK1EadBAc,7377
|
7
|
+
lamindb/_feature_set.py,sha256=nsiT9mKfEJdh2yqihOawfFL0mkHRNi5-9vxRllv5NAM,8137
|
8
|
+
lamindb/_filter.py,sha256=Ed9k-LOkr1BwqeHpvaEe0w27cG7Bu0BaXPDA0OIzUpQ,1410
|
9
|
+
lamindb/_finish.py,sha256=FRGN2cmBbZqmxr803YIpGGUaqst8xBTi3kmliV5oJo4,10504
|
10
|
+
lamindb/_from_values.py,sha256=SGTQNb0M1h3icuYsfIIjqI7xNy3i3Frw_-PAl5MXMBo,13860
|
11
|
+
lamindb/_is_versioned.py,sha256=8pXW2gkLTZsTxRERuWZLidiagNIC8evmCmnbztWkVQ4,1343
|
12
|
+
lamindb/_parents.py,sha256=Zgi9Lmw9td18Y0QJ96rYaBrjSaZ8XGcseWdbJkpJhFU,15061
|
13
|
+
lamindb/_query_manager.py,sha256=6_ZqQr0SKTYsbMtJd5BmaMoyASIVel5v2F1KMgacWlU,4252
|
14
|
+
lamindb/_query_set.py,sha256=LM5NsAWy5FCZZSxX1VbE20RdA5nsyk4_5p4abuMjdcI,11662
|
15
|
+
lamindb/_record.py,sha256=LPIUvJut4mFqk4231SaA7jpyKcN8K4RU2kpfNIo9I-4,19768
|
16
|
+
lamindb/_run.py,sha256=xj3ER4F_yWvuNw1mr0XU-QuIPi5hBO7Ue0ygBgJQ6mc,1887
|
17
|
+
lamindb/_save.py,sha256=FrtaW8uaw4YLMPixpW1T2o8SmNJqgNdpPF-xUf5tXJ8,11852
|
18
|
+
lamindb/_storage.py,sha256=GBVChv-DHVMNEBJL5l_JT6B4RDhZ6NnwgzmUICphYKk,413
|
19
|
+
lamindb/_transform.py,sha256=E9C7psuOnsNrUQpWRuGgEUM8_pc7YhDn7n4ieHzB4X0,3169
|
20
|
+
lamindb/_ulabel.py,sha256=XDSdZBXX_ki5s1vOths3MjF2x5DPggBR_PV_KF4SGyg,1611
|
21
|
+
lamindb/_utils.py,sha256=LGdiW4k3GClLz65vKAVRkL6Tw-Gkx9DWAdez1jyA5bE,428
|
22
|
+
lamindb/_view.py,sha256=_sAcSD06bC92R_LLDcHMhO0IfOqybBXXRYxOXvm1Juc,2322
|
23
|
+
lamindb/core/__init__.py,sha256=HtyYVFrS6RclSk7gZty9vgXU0k2_oZiqFPfqghBc4Fc,1415
|
24
|
+
lamindb/core/_data.py,sha256=yk2ozTt-mNIA8bWllmcC__WgFukj03fZU41rr_ultlM,16264
|
25
|
+
lamindb/core/_feature_manager.py,sha256=dWrHtICaJpKdaSKtU9etg3SbUnWJ3fKZWkSM0ZKFJes,32184
|
26
|
+
lamindb/core/_label_manager.py,sha256=51VzgF_TtdQDmKBjWmZcuE4OHVtsy-HdxdPHhUb5eJg,9659
|
27
|
+
lamindb/core/_mapped_collection.py,sha256=SGUsR6RbjNzUOq6A6wTa4M4GkLMuP4Z70WOeF39WPCU,19618
|
28
|
+
lamindb/core/_run_context.py,sha256=w_LdfwYTncCZmh4agNPey37UdKrzSglLfLUNBe5z1mw,18421
|
29
|
+
lamindb/core/_settings.py,sha256=sDfIfq9H7H8nUE51FJF4EO_Zihlxh44S3GbaliHKJY4,6108
|
30
|
+
lamindb/core/_sync_git.py,sha256=qc0yfPyKeG4uuNT_3qsv-mkIMqhLFqfXNeNVO49vV00,4547
|
31
|
+
lamindb/core/_track_environment.py,sha256=STzEVUzOeUEWdX7WDJUkKH4u08k7eupRX6AXQwoVt14,828
|
32
|
+
lamindb/core/exceptions.py,sha256=bbm-PeSy24qFcqh2HpucZWpwGAvk-TL_3FUoAPb3e3E,867
|
33
|
+
lamindb/core/fields.py,sha256=47Jmh3efUr5ZscgimR_yckY-I3cNf8ScLutbwKCK3j4,162
|
34
|
+
lamindb/core/schema.py,sha256=sNrzWnqeyh9Ppr7yImlSAXiHb_VJdB5DWuO-QERxQGY,1847
|
35
|
+
lamindb/core/types.py,sha256=xeQF2x40p2pR9eIVQrXT74RrS810z2fbjmTRTSQUqPM,230
|
36
|
+
lamindb/core/versioning.py,sha256=lz1JP3K-0npeSTZPY7kMVXqOOcB8IEGmdG0Si3kSdN8,4956
|
37
|
+
lamindb/core/datasets/__init__.py,sha256=zRP98oqUAaXhqWyKMiH0s_ImVIuNeziQQ2kQ_t0f-DI,1353
|
38
|
+
lamindb/core/datasets/_core.py,sha256=11vsIRREU7TvjwkL2htJWAGoBNCmG2qz8ps4Bd4SNLQ,19873
|
39
|
+
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
40
|
+
lamindb/core/storage/__init__.py,sha256=5LUFQKRr2BX24d-yWBezhTXBV83sShcOvPj5Y5u6qIg,441
|
41
|
+
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
42
|
+
lamindb/core/storage/_backed_access.py,sha256=4VmnqGd5DH6xJ5UQ7JMiQ2dfs-uLBnVlJXkZB8GcJHI,26624
|
43
|
+
lamindb/core/storage/_valid_suffixes.py,sha256=J08aglC9oo35pzahj0SQXW9IHib8Asp4dc11co-2uys,212
|
44
|
+
lamindb/core/storage/_zarr.py,sha256=5ceEz6YIvgvUnVVNWhK5Z4W0WfrvyvY82Yna5jSX1_E,3661
|
45
|
+
lamindb/core/storage/objects.py,sha256=OzvBCS-Urz5mr-O95qYt6RGBDDX5HmjfRRKWPPDn1ZE,1797
|
46
|
+
lamindb/core/storage/paths.py,sha256=IAtZTkYB0Q1vlVkx-7c-zBjQtlKVdwojemNgqVTOUC0,8255
|
47
|
+
lamindb/core/subsettings/__init__.py,sha256=KFHPzIE7f7Bj4RgMjGQF4CjTdHVG_VNFBrCndo49ixo,198
|
48
|
+
lamindb/core/subsettings/_creation_settings.py,sha256=54mfMH_osC753hpxcl7Dq1rwBD2LHnWveXtQpkLBITE,1194
|
49
|
+
lamindb/core/subsettings/_transform_settings.py,sha256=4YbCuZtJo6zdytl6UQR4GvdDkTtT6SRBqVzofGzNOt8,583
|
50
|
+
lamindb/integrations/__init__.py,sha256=aH2PmO2m4-vwIifMYTB0Fyyr_gZWtVnV71jT0tVWSw0,123
|
51
|
+
lamindb/integrations/_vitessce.py,sha256=VC80NKuzZ0FdjFxaLvyD78kAUNwvwBnGblSPDqT_mGQ,2737
|
52
|
+
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
53
|
+
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
54
|
+
lamindb-0.74.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
55
|
+
lamindb-0.74.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
56
|
+
lamindb-0.74.2.dist-info/METADATA,sha256=PjbRqnIXHyjshCFH9JlZR32KTSw_1i85gT3FWNj4MkI,2669
|
57
|
+
lamindb-0.74.2.dist-info/RECORD,,
|
lamindb-0.74.1.dist-info/RECORD
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
lamindb/__init__.py,sha256=7wGOqqM6NyKeQG6qqir53qzUowWMRAd36tH5L874hd0,2182
|
2
|
-
lamindb/_annotate.py,sha256=CScyKVB3k_x5p0pihxO1UrTFBCvPcSSjBXvGY3YgTLs,44381
|
3
|
-
lamindb/_artifact.py,sha256=zVNBF7y-rARGG78Z2d2dI2J0Tg_5yeZL-GfogzBB7xY,40456
|
4
|
-
lamindb/_can_validate.py,sha256=s1q0lxplqnhytrVgArBTm05XKMMmpreK0ZlVCsd2jjk,14849
|
5
|
-
lamindb/_collection.py,sha256=AGiztgM_OIet617aF86muL6lIv6GEDcmXorize6V62U,14657
|
6
|
-
lamindb/_feature.py,sha256=Z_Awtsj183SA1egZgNmJI_dH04rqXAj72od3H6n0uBk,7398
|
7
|
-
lamindb/_feature_set.py,sha256=ZAFLyIiWC6yPOFTF7K03olE2Rl3KthsV-1ttqJySzqQ,8106
|
8
|
-
lamindb/_filter.py,sha256=jEA1n1Hi6lEPaD0JXiTSh9K4joGzWU6Yxy0LCLTiOdY,1422
|
9
|
-
lamindb/_finish.py,sha256=WkFvZ0DijW9fRIsjyoxcAC4ehan_B0C8Fqoz9ZON19A,10213
|
10
|
-
lamindb/_from_values.py,sha256=Sq1NdjsqReih8aUR-JHZ09pxHdqL8rY-cZFHo078OJw,13886
|
11
|
-
lamindb/_is_versioned.py,sha256=0PgRCmxEmYDcAjllLSOYZm132B1lW6QgmBBERhRyFt0,1341
|
12
|
-
lamindb/_parents.py,sha256=kb5AHkntpTP5g2lk1aPL0FmIilYZYVZvj6stddFOI40,15075
|
13
|
-
lamindb/_query_manager.py,sha256=TjiwtX5CErEV58WyUFJ76p0riuPDODf8LGXo48aR9Fg,4236
|
14
|
-
lamindb/_query_set.py,sha256=q3C0gdfassidngMteGHuOlhHmt_3VXEGOwblRDInxpA,11626
|
15
|
-
lamindb/_registry.py,sha256=C_QKBAOhFj_pROBLUlieiPYWljd5ThPpTXunAekCQe8,18764
|
16
|
-
lamindb/_run.py,sha256=xj3ER4F_yWvuNw1mr0XU-QuIPi5hBO7Ue0ygBgJQ6mc,1887
|
17
|
-
lamindb/_save.py,sha256=It4XO448D8NG2cReo9Xy0lQBQdkMm_rCx_TGD1qZWWc,11864
|
18
|
-
lamindb/_storage.py,sha256=8wRefV-Klu6VBVtwcwppvTojeXnxRThaBdFniA0AEIw,400
|
19
|
-
lamindb/_transform.py,sha256=E9C7psuOnsNrUQpWRuGgEUM8_pc7YhDn7n4ieHzB4X0,3169
|
20
|
-
lamindb/_ulabel.py,sha256=XDSdZBXX_ki5s1vOths3MjF2x5DPggBR_PV_KF4SGyg,1611
|
21
|
-
lamindb/_utils.py,sha256=LGdiW4k3GClLz65vKAVRkL6Tw-Gkx9DWAdez1jyA5bE,428
|
22
|
-
lamindb/_view.py,sha256=NdWWF75rmkCHefqBViUnsHLu3OViJ1z_bEvfcedydsw,2330
|
23
|
-
lamindb/core/__init__.py,sha256=RDtvov8NkPTNT4Lhs1KWTd2s4eQsPBH0s3fQRNJQCZA,1375
|
24
|
-
lamindb/core/_data.py,sha256=u6eYlDOnLuwFMRsyg97qoIushwbHhwoQT-zjEL7p8VU,16241
|
25
|
-
lamindb/core/_feature_manager.py,sha256=OQ14OONCRecqVatNm5kALh5LuhWqKrwoMNPJ_qHtGhw,31372
|
26
|
-
lamindb/core/_label_manager.py,sha256=d9r3tiNDFbpZQmxE1jmgdgnMYPOfTPpAKGKtRRLmVj8,9640
|
27
|
-
lamindb/core/_mapped_collection.py,sha256=_OwFZh5SePDUD70XIK5kngv3we_Z5-YdGHNfpUSatSQ,19469
|
28
|
-
lamindb/core/_run_context.py,sha256=ybGgrzGBy9kOyQNH1bPaMixXZNmZGynAP1eO6Zwtp4A,18393
|
29
|
-
lamindb/core/_settings.py,sha256=HIuCC9xEVo_3o-uogZlN-6oQVs92EWmaqBJWAdGKj5o,6009
|
30
|
-
lamindb/core/_sync_git.py,sha256=5Fb82eG1WYyBlfMRCMlcUZNTVk70UU_SPnfvYEBL-A8,4124
|
31
|
-
lamindb/core/_track_environment.py,sha256=xLZ6kgzxWS6MWZ5LQ_wkbJX99vmYOT8iQ-Fz4OHCgWw,754
|
32
|
-
lamindb/core/exceptions.py,sha256=bbm-PeSy24qFcqh2HpucZWpwGAvk-TL_3FUoAPb3e3E,867
|
33
|
-
lamindb/core/fields.py,sha256=Jgi_XI-iTe6cT7oD8FV_JqEpjN1Q9rZWwL8VLtj4jkA,164
|
34
|
-
lamindb/core/schema.py,sha256=BbG7JGrXVLwEX_6eQb8ouJc9Q-MgazwqHvAM5dtrWtM,1861
|
35
|
-
lamindb/core/types.py,sha256=xeQF2x40p2pR9eIVQrXT74RrS810z2fbjmTRTSQUqPM,230
|
36
|
-
lamindb/core/versioning.py,sha256=zbp3wAWOqU1uDF9wRrpaS9JfmRglUQtVHvFpWWoJHZk,4943
|
37
|
-
lamindb/core/datasets/__init__.py,sha256=zRP98oqUAaXhqWyKMiH0s_ImVIuNeziQQ2kQ_t0f-DI,1353
|
38
|
-
lamindb/core/datasets/_core.py,sha256=11vsIRREU7TvjwkL2htJWAGoBNCmG2qz8ps4Bd4SNLQ,19873
|
39
|
-
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
40
|
-
lamindb/core/storage/__init__.py,sha256=5LUFQKRr2BX24d-yWBezhTXBV83sShcOvPj5Y5u6qIg,441
|
41
|
-
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
42
|
-
lamindb/core/storage/_backed_access.py,sha256=eManrLsu3pSSQAyAKy47FDBm-iHgjaNfHA-zLy59uDs,24536
|
43
|
-
lamindb/core/storage/_valid_suffixes.py,sha256=J08aglC9oo35pzahj0SQXW9IHib8Asp4dc11co-2uys,212
|
44
|
-
lamindb/core/storage/_zarr.py,sha256=5ceEz6YIvgvUnVVNWhK5Z4W0WfrvyvY82Yna5jSX1_E,3661
|
45
|
-
lamindb/core/storage/objects.py,sha256=OzvBCS-Urz5mr-O95qYt6RGBDDX5HmjfRRKWPPDn1ZE,1797
|
46
|
-
lamindb/core/storage/paths.py,sha256=p5TsZUOfQAN_0kzpr0JO43hRKLc95IO5qSu5V12A8Ok,8218
|
47
|
-
lamindb/core/subsettings/__init__.py,sha256=KFHPzIE7f7Bj4RgMjGQF4CjTdHVG_VNFBrCndo49ixo,198
|
48
|
-
lamindb/core/subsettings/_creation_settings.py,sha256=54mfMH_osC753hpxcl7Dq1rwBD2LHnWveXtQpkLBITE,1194
|
49
|
-
lamindb/core/subsettings/_transform_settings.py,sha256=4YbCuZtJo6zdytl6UQR4GvdDkTtT6SRBqVzofGzNOt8,583
|
50
|
-
lamindb/integrations/__init__.py,sha256=aH2PmO2m4-vwIifMYTB0Fyyr_gZWtVnV71jT0tVWSw0,123
|
51
|
-
lamindb/integrations/_vitessce.py,sha256=Qd39OuNsL0GXU7nMvEWLRRESFQ0mwGf_ePMJE_FDYm8,2639
|
52
|
-
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
53
|
-
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
54
|
-
lamindb-0.74.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
55
|
-
lamindb-0.74.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
56
|
-
lamindb-0.74.1.dist-info/METADATA,sha256=iQeRxSkzFqxjAVMnofcMWyBaYsXLEp5gIhDeP339GNI,2732
|
57
|
-
lamindb-0.74.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|