lamindb 1.3.2__py3-none-any.whl → 1.5.0__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 +52 -36
- lamindb/_finish.py +17 -10
- lamindb/_tracked.py +1 -1
- lamindb/base/__init__.py +3 -1
- lamindb/base/fields.py +40 -22
- lamindb/base/ids.py +1 -94
- lamindb/base/types.py +2 -0
- lamindb/base/uids.py +117 -0
- lamindb/core/_context.py +216 -133
- lamindb/core/_settings.py +38 -25
- lamindb/core/datasets/__init__.py +11 -4
- lamindb/core/datasets/_core.py +5 -5
- lamindb/core/datasets/_small.py +0 -93
- lamindb/core/datasets/mini_immuno.py +172 -0
- lamindb/core/loaders.py +1 -1
- lamindb/core/storage/_backed_access.py +100 -6
- lamindb/core/storage/_polars_lazy_df.py +51 -0
- lamindb/core/storage/_pyarrow_dataset.py +15 -30
- lamindb/core/storage/objects.py +6 -0
- lamindb/core/subsettings/__init__.py +2 -0
- lamindb/core/subsettings/_annotation_settings.py +11 -0
- lamindb/curators/__init__.py +7 -3559
- lamindb/curators/_legacy.py +2056 -0
- lamindb/curators/core.py +1546 -0
- lamindb/errors.py +11 -0
- lamindb/examples/__init__.py +27 -0
- lamindb/examples/schemas/__init__.py +12 -0
- lamindb/examples/schemas/_anndata.py +25 -0
- lamindb/examples/schemas/_simple.py +19 -0
- lamindb/integrations/_vitessce.py +8 -5
- lamindb/migrations/0091_alter_featurevalue_options_alter_space_options_and_more.py +24 -0
- lamindb/migrations/0092_alter_artifactfeaturevalue_artifact_and_more.py +75 -0
- lamindb/models/__init__.py +12 -2
- lamindb/models/_describe.py +21 -4
- lamindb/models/_feature_manager.py +384 -301
- lamindb/models/_from_values.py +1 -1
- lamindb/models/_is_versioned.py +5 -15
- lamindb/models/_label_manager.py +8 -2
- lamindb/models/artifact.py +354 -177
- lamindb/models/artifact_set.py +122 -0
- lamindb/models/can_curate.py +4 -1
- lamindb/models/collection.py +79 -56
- lamindb/models/core.py +1 -1
- lamindb/models/feature.py +78 -47
- lamindb/models/has_parents.py +24 -9
- lamindb/models/project.py +3 -3
- lamindb/models/query_manager.py +221 -22
- lamindb/models/query_set.py +251 -206
- lamindb/models/record.py +211 -344
- lamindb/models/run.py +59 -5
- lamindb/models/save.py +9 -5
- lamindb/models/schema.py +673 -196
- lamindb/models/transform.py +5 -14
- lamindb/models/ulabel.py +8 -5
- {lamindb-1.3.2.dist-info → lamindb-1.5.0.dist-info}/METADATA +8 -7
- lamindb-1.5.0.dist-info/RECORD +108 -0
- lamindb-1.3.2.dist-info/RECORD +0 -95
- {lamindb-1.3.2.dist-info → lamindb-1.5.0.dist-info}/LICENSE +0 -0
- {lamindb-1.3.2.dist-info → lamindb-1.5.0.dist-info}/WHEEL +0 -0
lamindb/models/transform.py
CHANGED
@@ -16,8 +16,7 @@ from lamindb.base.fields import (
|
|
16
16
|
)
|
17
17
|
from lamindb.base.users import current_user_id
|
18
18
|
|
19
|
-
from ..
|
20
|
-
from ..models._is_versioned import message_update_key_in_version_family, process_revises
|
19
|
+
from ..models._is_versioned import process_revises
|
21
20
|
from ._is_versioned import IsVersioned
|
22
21
|
from .record import Record, init_self_from_db, update_attributes
|
23
22
|
from .run import Run, User, delete_run_artifacts
|
@@ -36,7 +35,7 @@ if TYPE_CHECKING:
|
|
36
35
|
# does not inherit from TracksRun because the Transform
|
37
36
|
# is needed to define a run
|
38
37
|
class Transform(Record, IsVersioned):
|
39
|
-
"""Data transformations.
|
38
|
+
"""Data transformations such as scripts, notebooks, functions, or pipelines.
|
40
39
|
|
41
40
|
A "transform" can refer to a Python function, a script, a notebook, or a
|
42
41
|
pipeline. If you execute a transform, you generate a run
|
@@ -281,15 +280,7 @@ class Transform(Record, IsVersioned):
|
|
281
280
|
update_attributes(self, {"description": description})
|
282
281
|
return None
|
283
282
|
if revises is not None and key is not None and revises.key != key:
|
284
|
-
|
285
|
-
suid=revises.stem_uid,
|
286
|
-
existing_key=revises.key,
|
287
|
-
new_key=key,
|
288
|
-
registry="Transform",
|
289
|
-
)
|
290
|
-
raise InconsistentKey(
|
291
|
-
f"`key` is '{key}', but `revises.key` is '{revises.key}'\n\nEither do *not* pass `key`.\n\n{note}"
|
292
|
-
)
|
283
|
+
logger.important(f"renaming transform {revises.key} to {key}")
|
293
284
|
new_uid, version, key, description, revises = process_revises(
|
294
285
|
revises, version, key, description, Transform
|
295
286
|
)
|
@@ -349,9 +340,9 @@ class Transform(Record, IsVersioned):
|
|
349
340
|
|
350
341
|
def view_lineage(self, with_successors: bool = False, distance: int = 5):
|
351
342
|
"""View lineage of transforms."""
|
352
|
-
from .has_parents import
|
343
|
+
from .has_parents import view_parents
|
353
344
|
|
354
|
-
return
|
345
|
+
return view_parents(
|
355
346
|
record=self,
|
356
347
|
field="key",
|
357
348
|
with_children=with_successors,
|
lamindb/models/ulabel.py
CHANGED
@@ -48,9 +48,8 @@ class ULabel(Record, HasParents, CanCurate, TracksRun, TracksUpdates):
|
|
48
48
|
Often, a ulabel is measured *within* a dataset. For instance, an artifact
|
49
49
|
might characterize 2 species of the Iris flower (`"setosa"` &
|
50
50
|
`"versicolor"`) measured by a `"species"` feature. Use the
|
51
|
-
:class:`~lamindb.
|
52
|
-
annotate with labels that are contained in `DataFrame`
|
53
|
-
artifacts.
|
51
|
+
:class:`~lamindb.curators.DataFrameCurator` flow to automatically parse, validate, and
|
52
|
+
annotate with labels that are contained in `DataFrame` objects.
|
54
53
|
|
55
54
|
.. note::
|
56
55
|
|
@@ -82,9 +81,9 @@ class ULabel(Record, HasParents, CanCurate, TracksRun, TracksUpdates):
|
|
82
81
|
|
83
82
|
>>> artifact.ulabels.add(ulabel)
|
84
83
|
|
85
|
-
Query by
|
84
|
+
Query an artifact by label:
|
86
85
|
|
87
|
-
>>> ln.Artifact.filter(ulabels=train_split)
|
86
|
+
>>> ln.Artifact.filter(ulabels=train_split).df()
|
88
87
|
"""
|
89
88
|
|
90
89
|
class Meta(Record.Meta, TracksRun.Meta, TracksUpdates.Meta):
|
@@ -176,6 +175,8 @@ class ULabel(Record, HasParents, CanCurate, TracksRun, TracksUpdates):
|
|
176
175
|
description: str | None = kwargs.pop("description", None)
|
177
176
|
reference: str | None = kwargs.pop("reference", None)
|
178
177
|
reference_type: str | None = kwargs.pop("reference_type", None)
|
178
|
+
_skip_validation = kwargs.pop("_skip_validation", False)
|
179
|
+
_aux = kwargs.pop("_aux", None)
|
179
180
|
if len(kwargs) > 0:
|
180
181
|
valid_keywords = ", ".join([val[0] for val in _get_record_kwargs(ULabel)])
|
181
182
|
raise FieldValidationError(
|
@@ -188,6 +189,8 @@ class ULabel(Record, HasParents, CanCurate, TracksRun, TracksUpdates):
|
|
188
189
|
description=description,
|
189
190
|
reference=reference,
|
190
191
|
reference_type=reference_type,
|
192
|
+
_skip_validation=_skip_validation,
|
193
|
+
_aux=_aux,
|
191
194
|
)
|
192
195
|
|
193
196
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lamindb
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.0
|
4
4
|
Summary: A data framework for biology.
|
5
5
|
Author-email: Lamin Labs <open-source@lamin.ai>
|
6
6
|
Requires-Python: >=3.10,<3.14
|
@@ -9,9 +9,9 @@ Classifier: Programming Language :: Python :: 3.10
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
11
11
|
Classifier: Programming Language :: Python :: 3.13
|
12
|
-
Requires-Dist: lamin_utils==0.
|
13
|
-
Requires-Dist: lamin_cli==1.
|
14
|
-
Requires-Dist: lamindb_setup[aws]==1.
|
12
|
+
Requires-Dist: lamin_utils==0.14.0
|
13
|
+
Requires-Dist: lamin_cli==1.4.0
|
14
|
+
Requires-Dist: lamindb_setup[aws]==1.5.2
|
15
15
|
Requires-Dist: pyyaml
|
16
16
|
Requires-Dist: pyarrow
|
17
17
|
Requires-Dist: pandera
|
@@ -19,11 +19,11 @@ Requires-Dist: typing_extensions!=4.6.0
|
|
19
19
|
Requires-Dist: python-dateutil
|
20
20
|
Requires-Dist: scipy<1.15.0
|
21
21
|
Requires-Dist: pandas>=2.0.0
|
22
|
-
Requires-Dist: anndata>=0.8.0,<=0.11.
|
22
|
+
Requires-Dist: anndata>=0.8.0,<=0.11.4
|
23
23
|
Requires-Dist: fsspec
|
24
24
|
Requires-Dist: graphviz
|
25
25
|
Requires-Dist: psycopg2-binary
|
26
|
-
Requires-Dist: bionty>=1.2
|
26
|
+
Requires-Dist: bionty>=1.3.2 ; extra == "bionty"
|
27
27
|
Requires-Dist: cellregistry ; extra == "cellregistry"
|
28
28
|
Requires-Dist: clinicore ; extra == "clinicore"
|
29
29
|
Requires-Dist: tomlkit ; extra == "dev"
|
@@ -40,12 +40,13 @@ Requires-Dist: faker-biology ; extra == "dev"
|
|
40
40
|
Requires-Dist: django-schema-graph ; extra == "erdiagram"
|
41
41
|
Requires-Dist: readfcs>=2.0.1 ; extra == "fcs"
|
42
42
|
Requires-Dist: lamindb_setup[gcp] ; extra == "gcp"
|
43
|
-
Requires-Dist: nbproject==0.
|
43
|
+
Requires-Dist: nbproject==0.11.1 ; extra == "jupyter"
|
44
44
|
Requires-Dist: jupytext ; extra == "jupyter"
|
45
45
|
Requires-Dist: nbconvert>=7.2.1 ; extra == "jupyter"
|
46
46
|
Requires-Dist: mistune!=3.1.0 ; extra == "jupyter"
|
47
47
|
Requires-Dist: omop ; extra == "omop"
|
48
48
|
Requires-Dist: wetlab ; extra == "wetlab"
|
49
|
+
Requires-Dist: numcodecs<0.16.0 ; extra == "zarr"
|
49
50
|
Requires-Dist: zarr>=2.16.0,<3.0.0a0 ; extra == "zarr"
|
50
51
|
Project-URL: Home, https://github.com/laminlabs/lamindb
|
51
52
|
Provides-Extra: bionty
|
@@ -0,0 +1,108 @@
|
|
1
|
+
lamindb/__init__.py,sha256=PvttGVLvK5zlO9ZI651ZzH36fKKUpaj2fAyOCKRnAoE,2676
|
2
|
+
lamindb/_finish.py,sha256=Wqb846pCErsx5ZPulAfdF5PJbWzgAdfbuYuf4FndfhY,20124
|
3
|
+
lamindb/_tracked.py,sha256=fse_H0ehc9WvU_l1572g7qya0sRdWCh22LZkq0XU4ic,4445
|
4
|
+
lamindb/_view.py,sha256=kSmG8X4ULQZEKxY7ESnthQqsUf1DEzoYGeTLYRU1I7s,4938
|
5
|
+
lamindb/errors.py,sha256=gVt7E5LRjc4OezrkIiRRTXUDIw_unQaKf2300OPxBxg,2003
|
6
|
+
lamindb/base/__init__.py,sha256=6-iUeiBHuxC8vxP3vG880CH1nqP_7z34Appzzr63FBA,295
|
7
|
+
lamindb/base/fields.py,sha256=5l8ke5sAJ5_JvWqjKEMW8oyriGKA7itqGjbmoKKrJrM,8102
|
8
|
+
lamindb/base/ids.py,sha256=X-1N129FOoNw4TPlK_EzgTZOzRidiMyPWszz9r_066g,34
|
9
|
+
lamindb/base/types.py,sha256=HVtZbUqo1nfimep9JyiP-O-pQjyMge1_PcCM9v9je10,2777
|
10
|
+
lamindb/base/uids.py,sha256=cLBi5mIlsf1ltkTb17r1FLzlOjlGmjvsCygoVJHQ-A8,2116
|
11
|
+
lamindb/base/users.py,sha256=8MSmAvCKoUF15YsDE6BGLBXsFWpfoEEg8iDTKZ7kD48,848
|
12
|
+
lamindb/core/__init__.py,sha256=aaBq0UVjNolMynbT1V5hB6UrJm1tK0M6WHu_r6em9_4,604
|
13
|
+
lamindb/core/_compat.py,sha256=NLnKk1qk4xdgMV-QwFDnBnbio02ujjlF86icvhpdv4c,2029
|
14
|
+
lamindb/core/_context.py,sha256=JOvz3YbzZy3zGq_0giLHFZIGl04dMq-0hneUdJMTZes,33989
|
15
|
+
lamindb/core/_mapped_collection.py,sha256=dxyZ1ZHFn5SBl1xILqN9N6TTUJP0PptVBV-2O0EdZww,25751
|
16
|
+
lamindb/core/_settings.py,sha256=DAeEN2Qswj6VDlM7OE5YtoteMfFZ61CmMwcS056_scE,6211
|
17
|
+
lamindb/core/_sync_git.py,sha256=Z7keuyS5X7CAj285sEbZIFExZF9mtjGH8DzKwz3xhHw,5881
|
18
|
+
lamindb/core/_track_environment.py,sha256=gKmXiL2meqJT65X-66p_GlonoxzBZXNwNm-G9gk0fS4,847
|
19
|
+
lamindb/core/exceptions.py,sha256=FMEoSvT3FvtLkxQAt2oDXPeaPem8V5x5UBbTsPFYU5w,53
|
20
|
+
lamindb/core/loaders.py,sha256=CFXQILMJTEF7IBwgP-ihuyBs0cV8rCoJmqIpzwD8OMA,5460
|
21
|
+
lamindb/core/types.py,sha256=yHr2Vn_p1Hepz_mBooXmsKudqu8Tco7lXZmVS_ORQIw,383
|
22
|
+
lamindb/core/datasets/__init__.py,sha256=x5zn_vn8D4xMJOJ9hVc8wRwQk5ea81Un2tGHb2UfiHg,1893
|
23
|
+
lamindb/core/datasets/_core.py,sha256=uaP0snoKuAE5nDTL_XIgPeEoXSp5sTrNNAyOPDciZRU,20286
|
24
|
+
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
25
|
+
lamindb/core/datasets/_small.py,sha256=HBzyTporAl-6Cr4DbDDEtzbU2ILKNxxiRM-GeZofqsw,2290
|
26
|
+
lamindb/core/datasets/mini_immuno.py,sha256=4d7TRNsq8GPIeLc-RlDcUMCfTdlPmrkCXW_0R749qyg,5428
|
27
|
+
lamindb/core/storage/__init__.py,sha256=JOIMu_7unbyhndtH1j0Q-9AvY8knSuc1IJO9sQnyBAQ,498
|
28
|
+
lamindb/core/storage/_anndata_accessor.py,sha256=oq2e4vlBnGhIeGR5a_8traOV3tKklZJUqcgKt0pEO8c,26187
|
29
|
+
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
30
|
+
lamindb/core/storage/_backed_access.py,sha256=LlpRDZ0skseZA5tBFu3-cH1wJwuXm7-NS2RgnTK7wgc,7382
|
31
|
+
lamindb/core/storage/_polars_lazy_df.py,sha256=Z0KMp0OU5S36L5g8EuJk7V_nn-spgG1lFeEFnkTOLcw,1350
|
32
|
+
lamindb/core/storage/_pyarrow_dataset.py,sha256=lRYYt7edUtwauhxd7RwFud6YPDbz2PFvYYgqLhfapfk,1398
|
33
|
+
lamindb/core/storage/_tiledbsoma.py,sha256=gOcfgMHToI142KqyOYWJMOzmFMLos660k6ZFaAooYPc,10308
|
34
|
+
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
35
|
+
lamindb/core/storage/_zarr.py,sha256=cisYXU4_QXMF_ZY2pV52Incus6365mMxRphLaHO76W0,6801
|
36
|
+
lamindb/core/storage/objects.py,sha256=n1Kj1soxF-_iLFyNnHriVFcngw6nqEAd7aVm0Hm8Tcw,3017
|
37
|
+
lamindb/core/storage/paths.py,sha256=wJTD7qza87Xx7ZMo9HFHKgZWaVnst6qc4F2SzqvBMrE,7118
|
38
|
+
lamindb/core/subsettings/__init__.py,sha256=f_vOqZOjVGez8pLmtrUuc_ayDGXl07t_ZY-P2Cedxbo,201
|
39
|
+
lamindb/core/subsettings/_annotation_settings.py,sha256=o-yTYw-NmjFmtehbKU8qnf7tyaeDFkTRGan1pXAIVT0,370
|
40
|
+
lamindb/core/subsettings/_creation_settings.py,sha256=NGHWKqCFSzVNBxAr2VnmdYguiFdW29XUK7T9wRsVshg,906
|
41
|
+
lamindb/curators/__init__.py,sha256=ZexikeaVunT24TqsR1NsSOCSBXDBigfGtFT55tBwqS8,371
|
42
|
+
lamindb/curators/_legacy.py,sha256=dTim3YFvdYyMsn6y8qSYkbCnnEI4tlaevN2-OO_qEx8,76174
|
43
|
+
lamindb/curators/core.py,sha256=Kd9XAow7DR0BxrjFZ3zH469_11FItoD7RyqkW2zg4vA,60184
|
44
|
+
lamindb/curators/_cellxgene_schemas/__init__.py,sha256=zqlFzMNMDGEBe6DV0gBsBMpfc9UHvNv1EpBsz_ktMoA,7502
|
45
|
+
lamindb/curators/_cellxgene_schemas/schema_versions.csv,sha256=X9rmO88TW1Fht1f5mJs0JdW-VPvyKSajpf8lHNeECj4,1680
|
46
|
+
lamindb/examples/__init__.py,sha256=DGImiuWYDvwxh78p5FCwQWClEwsE3ODLU49i_NqbW0c,533
|
47
|
+
lamindb/examples/schemas/__init__.py,sha256=NPDp7VjMOHStEIthx3xW9NSHtY7jnnMzrNPcSDgxT3M,241
|
48
|
+
lamindb/examples/schemas/_anndata.py,sha256=Q0h7YWZ6lqAZtE0i1xxCvJ8JfSa_RhFj4RY1sE_9HZs,764
|
49
|
+
lamindb/examples/schemas/_simple.py,sha256=JdavLLrJnxDLTKBKRk2Tb534AInlzX0jyEvU9LcH-NQ,568
|
50
|
+
lamindb/integrations/__init__.py,sha256=RWGMYYIzr8zvmNPyVB4m-p4gMDhxdRbjES2Ed23OItw,215
|
51
|
+
lamindb/integrations/_vitessce.py,sha256=OvtnBAxlR_PvfeGjpySjzi2uRYsBwDwb3tMyhBzNVFk,4110
|
52
|
+
lamindb/migrations/0069_squashed.py,sha256=gMWv65ErtjJZyWWo1b4uFHXWa6MSuBcmqz4ElZ6GPf4,62639
|
53
|
+
lamindb/migrations/0070_lamindbv1_migrate_data.py,sha256=tyq_xi6U8TXi9C2Raf6v_UTtfyfqQOUIFJzYj4oCgAE,2429
|
54
|
+
lamindb/migrations/0071_lamindbv1_migrate_schema.py,sha256=r3PPpq4RK7rhrLWjhVACd5i-tSUTBF0X6Luc5v-g0Lg,25125
|
55
|
+
lamindb/migrations/0072_remove_user__branch_code_remove_user_aux_and_more.py,sha256=Nek9Mkuop3LgjAuW3moY-dyPXroCFq8UyvCAAWEquCM,4443
|
56
|
+
lamindb/migrations/0073_merge_ourprojects.py,sha256=f0uZ63X0iEylKDlYWD6CAYMge5RcwPSH6yGsoA1KgPQ,35032
|
57
|
+
lamindb/migrations/0074_lamindbv1_part4.py,sha256=NqYjEAmm2bNuK42ufLaJZDBjCjAJNv-N9pEXK7iCfyA,11557
|
58
|
+
lamindb/migrations/0075_lamindbv1_part5.py,sha256=-3pqXz7e-NbWGTqMhOStcx8zU6HjS-8dlqdyxqexWao,8960
|
59
|
+
lamindb/migrations/0076_lamindbv1_part6.py,sha256=G_Wgog-OgquE0-h_CykjiDWUyPdYlCwA8gXjeuBY2OM,21349
|
60
|
+
lamindb/migrations/0077_lamindbv1_part6b.py,sha256=v7k8OZX9o5ppSJU_yhHlIXGTobTm30bo1dAIi8tUkEI,8211
|
61
|
+
lamindb/migrations/0078_lamindbv1_part6c.py,sha256=RWRXBwyyQ_rFTN5kwstBziV6tqHJcGYI2vsFmuYCCz0,17084
|
62
|
+
lamindb/migrations/0079_alter_rundata_value_json_and_more.py,sha256=yQmbs8yWrFLOVQJqAfzLNMZOqTSnXyG-mQgpO7ls1u8,995
|
63
|
+
lamindb/migrations/0080_polish_lamindbv1.py,sha256=VfCwJtHlBsMPIyFQ2oh24oWkiRXjDvXRpKe5fBZ63aM,17660
|
64
|
+
lamindb/migrations/0081_revert_textfield_collection.py,sha256=uHuJ0W4Ips7BrnQnQBGPMn2eFQz29a1QAdHzN7XlDxo,490
|
65
|
+
lamindb/migrations/0082_alter_feature_dtype.py,sha256=qAmZL2g0x43Jk4nbwE-c5z_29Q6vzvrL8DYJE16ZTVo,508
|
66
|
+
lamindb/migrations/0083_alter_feature_is_type_alter_flextable_is_type_and_more.py,sha256=ANFJmrd7rtpDvk0OP0EwAhkB-K4GJobdOaEWmjrQqhM,2725
|
67
|
+
lamindb/migrations/0084_alter_schemafeature_feature_and_more.py,sha256=ATL1Tyfvtvs0ZUH3JwWfBhcRsOGepCoMEjp9yZmO7z0,1012
|
68
|
+
lamindb/migrations/0085_alter_feature_is_type_alter_flextable_is_type_and_more.py,sha256=09KGDirJWH1wkmYBREaF_UrkDGS9qwGxOQuleKydDbI,1941
|
69
|
+
lamindb/migrations/0086_various.py,sha256=6-_vkiBEiv0ZVp-JCMVdea-AaKRU61DHyMWprU_VUrg,2824
|
70
|
+
lamindb/migrations/0087_rename__schemas_m2m_artifact_feature_sets_and_more.py,sha256=zRlBS89VhmECwGA_y9LghKibxJjtEAmHsEavKdj1ces,1132
|
71
|
+
lamindb/migrations/0088_schema_components.py,sha256=9EeoEXX2mf8RtGv_eqOH9zpI2Dg7jhOT9Kxe-9vCiTQ,9230
|
72
|
+
lamindb/migrations/0089_subsequent_runs.py,sha256=ETXBqn-MwhFi3GIUbUqwM2j9un2o-0CI2Ux8b8FXuuw,5859
|
73
|
+
lamindb/migrations/0090_runproject_project_runs.py,sha256=Ab9wyGxc6xjBfj-36cqdTlRLj2vgQM3QC9o-mvF0MD8,2449
|
74
|
+
lamindb/migrations/0090_squashed.py,sha256=kx_A_25BYantikxCbGhJughFpv_lqyHH86pMh5YevEE,160823
|
75
|
+
lamindb/migrations/0091_alter_featurevalue_options_alter_space_options_and_more.py,sha256=Df4EYAQlLKZ4BpFcsRRF52pGN3hDSo94laiO-V90Kn4,607
|
76
|
+
lamindb/migrations/0092_alter_artifactfeaturevalue_artifact_and_more.py,sha256=x-2Pvi0GJugkLrR--Fw9PBzV-HxqXjl0NktxRtRFJno,2459
|
77
|
+
lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
|
+
lamindb/models/__init__.py,sha256=IFYoZfly3m0Me5Fr8sk6-KdYpVzkuug0lo8jvci00Kg,2080
|
79
|
+
lamindb/models/_describe.py,sha256=4PxaavWidEL8cyV2idbpC_7Zo0Jmjam3X1Bwe71IMaY,5489
|
80
|
+
lamindb/models/_django.py,sha256=2LFaTvIPtxIV8_T6Kx0cvquTetj7C3OcnKukUyC9msY,7705
|
81
|
+
lamindb/models/_feature_manager.py,sha256=FCZ9Tv0sJv1NPnTanK5O1duIN0MsPVmcIive53nEc1M,53899
|
82
|
+
lamindb/models/_from_values.py,sha256=-8l3_d2Nm14kzi1FjEYvBwyuucL-ZcDSjlMufIb4XoQ,13324
|
83
|
+
lamindb/models/_is_versioned.py,sha256=Th2_cBf9UWh27E6ANxg6LGmjBOumXFy7AjH0GG4FoXA,7601
|
84
|
+
lamindb/models/_label_manager.py,sha256=QOT6mz_rzPJ5p7hM1l-XzDWzyWUERpmAan2n_ma5wpI,12112
|
85
|
+
lamindb/models/_relations.py,sha256=ONjHPiWIa_Ur7zMNTa_9Uw7K-366GORyPvGoVjf4EQs,3681
|
86
|
+
lamindb/models/artifact.py,sha256=MHEKV-8xuzc5n5-aSyhpGdja2S-ALr0FhsBwhuhhpJw,110368
|
87
|
+
lamindb/models/artifact_set.py,sha256=VOZEGDo3m_9Yg_ftx3I2fwdydjHN61X_qV18N6xG4kM,4117
|
88
|
+
lamindb/models/can_curate.py,sha256=5dXHCRoJzLg2y9YDhpH7CyWexxliFHilwJ_UPjjZwRI,29188
|
89
|
+
lamindb/models/collection.py,sha256=TNXnrR86ZgsSfEvaOuAEItgZ947klTXXZspa7hpyVmw,27288
|
90
|
+
lamindb/models/core.py,sha256=A-W_Hdg4AmbBFBU38SEEVhOwSIzww5oNgYAQFnwOO7A,4018
|
91
|
+
lamindb/models/feature.py,sha256=WoT29eZ8DR6MTZgnztbRye3-zX4BRYfJ8HlhdenX2qA,28186
|
92
|
+
lamindb/models/flextable.py,sha256=ET9j0fTFYQIdXOZfwCnosXOag7nYD1DUV6_wZNqhvOs,5400
|
93
|
+
lamindb/models/has_parents.py,sha256=U-UDu4C3C_lwZo7XA0UbH4bg2kia2Lu16YTPb28cEpw,18456
|
94
|
+
lamindb/models/project.py,sha256=Hm-5hLn-FffFK3J_68gt-AxVc6bo26fegwGFRw0Gp50,15225
|
95
|
+
lamindb/models/query_manager.py,sha256=mqsULCmUQf5ibpSXazca9ZYxyZwiDLuzSm8s6dPrl_M,10712
|
96
|
+
lamindb/models/query_set.py,sha256=T8aeXV8W-Wdma_t5eTBeDj54NIlYGimvfEGEh7o2INo,30305
|
97
|
+
lamindb/models/record.py,sha256=XM5TEnwNgzUJGZYC1n9w499-QVGeYLQ9eYUwVY6msQw,61395
|
98
|
+
lamindb/models/run.py,sha256=FzqVQhYj4DXqlnmHvNIziOCAlx9K0wISXBLpom1Yb74,20688
|
99
|
+
lamindb/models/save.py,sha256=JTAaorKECx0ZeHaX0H9Yt4MDwOsT9F813WbSJkBIPaU,13339
|
100
|
+
lamindb/models/schema.py,sha256=9RUuHTiFGJAGsxMyyzJ79HrAEDfJ8OmjXGXD7G3yXm4,48040
|
101
|
+
lamindb/models/transform.py,sha256=LGnTR7g_rAx3YFAFv4l4_UzabruKQlnui1Y3tlWHwXk,12731
|
102
|
+
lamindb/models/ulabel.py,sha256=yn9ttz28MqDBh6ZgwH7cty6GHCJOzLJn2IEpspYosDo,8793
|
103
|
+
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
104
|
+
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
105
|
+
lamindb-1.5.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
106
|
+
lamindb-1.5.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
107
|
+
lamindb-1.5.0.dist-info/METADATA,sha256=g1M_VmflzJYLeuY2Ac_fGLjKZeJtQk19MrK65fOc3EY,2782
|
108
|
+
lamindb-1.5.0.dist-info/RECORD,,
|
lamindb-1.3.2.dist-info/RECORD
DELETED
@@ -1,95 +0,0 @@
|
|
1
|
-
lamindb/__init__.py,sha256=PEWc1Xf6XBM-jY-0n8kaf2pm3k3D2Fem4H7LNUw5Nt8,2468
|
2
|
-
lamindb/_finish.py,sha256=UK9XW1qZCd32Nqz0cdKYmpX9ilFU0nGyNb6Urwfx_Nw,19612
|
3
|
-
lamindb/_tracked.py,sha256=JKzYEpqVojklTms0VpP-tU34AHVZG8a13dSl3CfIzwQ,4472
|
4
|
-
lamindb/_view.py,sha256=kSmG8X4ULQZEKxY7ESnthQqsUf1DEzoYGeTLYRU1I7s,4938
|
5
|
-
lamindb/errors.py,sha256=F6einUIStsTgWcBfSlG8eGf2Q6yWUaqMlSULqmkV8GA,1734
|
6
|
-
lamindb/base/__init__.py,sha256=qS7BM1YVHWridJp2CsiH5Rb38z6kkuDYCjerNHvI2qQ,263
|
7
|
-
lamindb/base/fields.py,sha256=RdwYHQmB7B-jopD_K2QNL5vjhOelu7DWGgqQItXr3pg,8024
|
8
|
-
lamindb/base/ids.py,sha256=OOgD5vxry6s2vSslb8-E9zEykDMpyhnungfT844DhSU,1547
|
9
|
-
lamindb/base/types.py,sha256=w_dQ2t9Htk8030OA_blksY9FG4NNcx3p7qJumFkBWkg,2714
|
10
|
-
lamindb/base/users.py,sha256=8MSmAvCKoUF15YsDE6BGLBXsFWpfoEEg8iDTKZ7kD48,848
|
11
|
-
lamindb/core/__init__.py,sha256=aaBq0UVjNolMynbT1V5hB6UrJm1tK0M6WHu_r6em9_4,604
|
12
|
-
lamindb/core/_compat.py,sha256=NLnKk1qk4xdgMV-QwFDnBnbio02ujjlF86icvhpdv4c,2029
|
13
|
-
lamindb/core/_context.py,sha256=0JqPGrMsri8XhFwg7ugV-7xBJMF5czR2S610bCpLdZM,30411
|
14
|
-
lamindb/core/_mapped_collection.py,sha256=dxyZ1ZHFn5SBl1xILqN9N6TTUJP0PptVBV-2O0EdZww,25751
|
15
|
-
lamindb/core/_settings.py,sha256=WLjFn9XunEZ9zMy2Qvmc3aJqWMXw2hcG0EBNX9wjkfU,5706
|
16
|
-
lamindb/core/_sync_git.py,sha256=Z7keuyS5X7CAj285sEbZIFExZF9mtjGH8DzKwz3xhHw,5881
|
17
|
-
lamindb/core/_track_environment.py,sha256=gKmXiL2meqJT65X-66p_GlonoxzBZXNwNm-G9gk0fS4,847
|
18
|
-
lamindb/core/exceptions.py,sha256=FMEoSvT3FvtLkxQAt2oDXPeaPem8V5x5UBbTsPFYU5w,53
|
19
|
-
lamindb/core/loaders.py,sha256=1JHLr4e-gbh8QXiy5duOPsiKo7TKjo74vmvolqhkhgs,5458
|
20
|
-
lamindb/core/types.py,sha256=yHr2Vn_p1Hepz_mBooXmsKudqu8Tco7lXZmVS_ORQIw,383
|
21
|
-
lamindb/core/datasets/__init__.py,sha256=g6cSgJmlkLuI6CoxB-Lbg70cpkVZWDuPv-2kcFb0uYs,1745
|
22
|
-
lamindb/core/datasets/_core.py,sha256=_PrZSr_rRpfScdzU216YMUR6TxihqA2hffRXmjD5Azw,20344
|
23
|
-
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
24
|
-
lamindb/core/datasets/_small.py,sha256=NuovAoA1oMpknQUASErdZgRz4byRQvT4ZgfQRX3GaHY,5597
|
25
|
-
lamindb/core/storage/__init__.py,sha256=JOIMu_7unbyhndtH1j0Q-9AvY8knSuc1IJO9sQnyBAQ,498
|
26
|
-
lamindb/core/storage/_anndata_accessor.py,sha256=oq2e4vlBnGhIeGR5a_8traOV3tKklZJUqcgKt0pEO8c,26187
|
27
|
-
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
28
|
-
lamindb/core/storage/_backed_access.py,sha256=98KdO0Qw6ZrYHAnHG-zUzjxr8Jb-ujIWtGWjg_Wdk9c,3854
|
29
|
-
lamindb/core/storage/_pyarrow_dataset.py,sha256=Kvrwuw1-44WpyI7iuKWV5XU3u-wI9-hz0FiXPzxErmI,1892
|
30
|
-
lamindb/core/storage/_tiledbsoma.py,sha256=gOcfgMHToI142KqyOYWJMOzmFMLos660k6ZFaAooYPc,10308
|
31
|
-
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
32
|
-
lamindb/core/storage/_zarr.py,sha256=cisYXU4_QXMF_ZY2pV52Incus6365mMxRphLaHO76W0,6801
|
33
|
-
lamindb/core/storage/objects.py,sha256=l2JTHI7oLMH7JJqxwpyIgMXZJ3gaGv7xl_Jr21wWFAs,2809
|
34
|
-
lamindb/core/storage/paths.py,sha256=wJTD7qza87Xx7ZMo9HFHKgZWaVnst6qc4F2SzqvBMrE,7118
|
35
|
-
lamindb/core/subsettings/__init__.py,sha256=j6G9WAJLK-x9FzPSFw-HJUmOseZKGTbK-oLTKI_X_zs,126
|
36
|
-
lamindb/core/subsettings/_creation_settings.py,sha256=NGHWKqCFSzVNBxAr2VnmdYguiFdW29XUK7T9wRsVshg,906
|
37
|
-
lamindb/curators/__init__.py,sha256=0yZXh_VNkkU_A6jkhzrYiKa1TUmPqfmFn6wUIv82B_Y,131303
|
38
|
-
lamindb/curators/_cellxgene_schemas/__init__.py,sha256=zqlFzMNMDGEBe6DV0gBsBMpfc9UHvNv1EpBsz_ktMoA,7502
|
39
|
-
lamindb/curators/_cellxgene_schemas/schema_versions.csv,sha256=X9rmO88TW1Fht1f5mJs0JdW-VPvyKSajpf8lHNeECj4,1680
|
40
|
-
lamindb/integrations/__init__.py,sha256=RWGMYYIzr8zvmNPyVB4m-p4gMDhxdRbjES2Ed23OItw,215
|
41
|
-
lamindb/integrations/_vitessce.py,sha256=VgO9zAlTSIKDo1wEef_Q4BudTAVtRSZmuzRdCGwBvJk,4016
|
42
|
-
lamindb/migrations/0069_squashed.py,sha256=gMWv65ErtjJZyWWo1b4uFHXWa6MSuBcmqz4ElZ6GPf4,62639
|
43
|
-
lamindb/migrations/0070_lamindbv1_migrate_data.py,sha256=tyq_xi6U8TXi9C2Raf6v_UTtfyfqQOUIFJzYj4oCgAE,2429
|
44
|
-
lamindb/migrations/0071_lamindbv1_migrate_schema.py,sha256=r3PPpq4RK7rhrLWjhVACd5i-tSUTBF0X6Luc5v-g0Lg,25125
|
45
|
-
lamindb/migrations/0072_remove_user__branch_code_remove_user_aux_and_more.py,sha256=Nek9Mkuop3LgjAuW3moY-dyPXroCFq8UyvCAAWEquCM,4443
|
46
|
-
lamindb/migrations/0073_merge_ourprojects.py,sha256=f0uZ63X0iEylKDlYWD6CAYMge5RcwPSH6yGsoA1KgPQ,35032
|
47
|
-
lamindb/migrations/0074_lamindbv1_part4.py,sha256=NqYjEAmm2bNuK42ufLaJZDBjCjAJNv-N9pEXK7iCfyA,11557
|
48
|
-
lamindb/migrations/0075_lamindbv1_part5.py,sha256=-3pqXz7e-NbWGTqMhOStcx8zU6HjS-8dlqdyxqexWao,8960
|
49
|
-
lamindb/migrations/0076_lamindbv1_part6.py,sha256=G_Wgog-OgquE0-h_CykjiDWUyPdYlCwA8gXjeuBY2OM,21349
|
50
|
-
lamindb/migrations/0077_lamindbv1_part6b.py,sha256=v7k8OZX9o5ppSJU_yhHlIXGTobTm30bo1dAIi8tUkEI,8211
|
51
|
-
lamindb/migrations/0078_lamindbv1_part6c.py,sha256=RWRXBwyyQ_rFTN5kwstBziV6tqHJcGYI2vsFmuYCCz0,17084
|
52
|
-
lamindb/migrations/0079_alter_rundata_value_json_and_more.py,sha256=yQmbs8yWrFLOVQJqAfzLNMZOqTSnXyG-mQgpO7ls1u8,995
|
53
|
-
lamindb/migrations/0080_polish_lamindbv1.py,sha256=VfCwJtHlBsMPIyFQ2oh24oWkiRXjDvXRpKe5fBZ63aM,17660
|
54
|
-
lamindb/migrations/0081_revert_textfield_collection.py,sha256=uHuJ0W4Ips7BrnQnQBGPMn2eFQz29a1QAdHzN7XlDxo,490
|
55
|
-
lamindb/migrations/0082_alter_feature_dtype.py,sha256=qAmZL2g0x43Jk4nbwE-c5z_29Q6vzvrL8DYJE16ZTVo,508
|
56
|
-
lamindb/migrations/0083_alter_feature_is_type_alter_flextable_is_type_and_more.py,sha256=ANFJmrd7rtpDvk0OP0EwAhkB-K4GJobdOaEWmjrQqhM,2725
|
57
|
-
lamindb/migrations/0084_alter_schemafeature_feature_and_more.py,sha256=ATL1Tyfvtvs0ZUH3JwWfBhcRsOGepCoMEjp9yZmO7z0,1012
|
58
|
-
lamindb/migrations/0085_alter_feature_is_type_alter_flextable_is_type_and_more.py,sha256=09KGDirJWH1wkmYBREaF_UrkDGS9qwGxOQuleKydDbI,1941
|
59
|
-
lamindb/migrations/0086_various.py,sha256=6-_vkiBEiv0ZVp-JCMVdea-AaKRU61DHyMWprU_VUrg,2824
|
60
|
-
lamindb/migrations/0087_rename__schemas_m2m_artifact_feature_sets_and_more.py,sha256=zRlBS89VhmECwGA_y9LghKibxJjtEAmHsEavKdj1ces,1132
|
61
|
-
lamindb/migrations/0088_schema_components.py,sha256=9EeoEXX2mf8RtGv_eqOH9zpI2Dg7jhOT9Kxe-9vCiTQ,9230
|
62
|
-
lamindb/migrations/0089_subsequent_runs.py,sha256=ETXBqn-MwhFi3GIUbUqwM2j9un2o-0CI2Ux8b8FXuuw,5859
|
63
|
-
lamindb/migrations/0090_runproject_project_runs.py,sha256=Ab9wyGxc6xjBfj-36cqdTlRLj2vgQM3QC9o-mvF0MD8,2449
|
64
|
-
lamindb/migrations/0090_squashed.py,sha256=kx_A_25BYantikxCbGhJughFpv_lqyHH86pMh5YevEE,160823
|
65
|
-
lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
-
lamindb/models/__init__.py,sha256=NlnrPiBSv93PttHDrAYnF3RTfiIhgC7QOE_mP0M9Ddc,1934
|
67
|
-
lamindb/models/_describe.py,sha256=B-lmzc8AYaeuKwwRRsF0q8qT6P1i93sEjYkfl0NuyWQ,4926
|
68
|
-
lamindb/models/_django.py,sha256=2LFaTvIPtxIV8_T6Kx0cvquTetj7C3OcnKukUyC9msY,7705
|
69
|
-
lamindb/models/_feature_manager.py,sha256=f81DJElY1XXX-ps9tfnk3ddJJBzDO-QPzIP-Dn4rxe8,50058
|
70
|
-
lamindb/models/_from_values.py,sha256=3IkJTA3KTJHyuVZ1Hki1MFa4PKbHrK6mhPsshYygku8,13327
|
71
|
-
lamindb/models/_is_versioned.py,sha256=ivtC0t96YI6eaMFqg0ctWY3ert96I_2R-DI5O0Zx7kU,8011
|
72
|
-
lamindb/models/_label_manager.py,sha256=rdTAjN0PNxIuHv289_JPoxvdPVVOTgBWhjWqBpKEnm4,11935
|
73
|
-
lamindb/models/_relations.py,sha256=ONjHPiWIa_Ur7zMNTa_9Uw7K-366GORyPvGoVjf4EQs,3681
|
74
|
-
lamindb/models/artifact.py,sha256=nWTUIkV8RyK_mBJ-aTEGOiF-Q1HG4Bi8wgTkQZ5MxE8,103678
|
75
|
-
lamindb/models/can_curate.py,sha256=_XraPciWg75gnT1j5HgXhsaUFOVtO27wrVageQgsxqM,29071
|
76
|
-
lamindb/models/collection.py,sha256=P1E4olaqaPsVYdcQe8AgH_yUUdeQBa6QcyD1Y6Gedjo,26311
|
77
|
-
lamindb/models/core.py,sha256=cjQGk5r0Rzf3zTeC0gn_GB29UfKq34l4hThsNNVhi3o,3965
|
78
|
-
lamindb/models/feature.py,sha256=OTmh0zIESnMDVgIIJYlL8018qKSAKYLuoG1cYlhTk-g,26086
|
79
|
-
lamindb/models/flextable.py,sha256=ET9j0fTFYQIdXOZfwCnosXOag7nYD1DUV6_wZNqhvOs,5400
|
80
|
-
lamindb/models/has_parents.py,sha256=PEGDiNTK7ikHBHAGsiHK4e6TA9jqUFRom1HSQuyReyE,17942
|
81
|
-
lamindb/models/project.py,sha256=WSOtM6-hKPeDNOCR6Frq1bJxc27j0HJWhCmFh5L3CiM,15174
|
82
|
-
lamindb/models/query_manager.py,sha256=RqF842cqloAv5z4zLDlWAZfVkLQbhCPry6WQW3CaznI,3713
|
83
|
-
lamindb/models/query_set.py,sha256=buJ-zuua5MTqeEE8WD3lOBZXs19k_r4DuRWPB8Bai5Y,27060
|
84
|
-
lamindb/models/record.py,sha256=RYx1PeJkfMu6BQuROIG-sVtj3lV0Ck7PwVfQ51nVlyQ,65278
|
85
|
-
lamindb/models/run.py,sha256=_qCFjeGcK1-MEpRJCdnl6NScCO7Rye3lYl56wEbq9mM,18716
|
86
|
-
lamindb/models/save.py,sha256=VEq4kmDyDiw9zTQY6meA9c5yT_YU5ldFzRDgKqCX59M,13031
|
87
|
-
lamindb/models/schema.py,sha256=zbzzQ8UOLqhJh-PC0CoRu-sN5-NnIFXoDtj1KSPhj_s,28672
|
88
|
-
lamindb/models/transform.py,sha256=PbtjakPWmw0iuCG0HPEbysISVX_CoIE2KAPF7L18Vak,13064
|
89
|
-
lamindb/models/ulabel.py,sha256=A8zJcRiGNmq24njLJv7_FuVZJmdtSkN-MSKw5c1QJMo,8605
|
90
|
-
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
91
|
-
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
92
|
-
lamindb-1.3.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
93
|
-
lamindb-1.3.2.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
94
|
-
lamindb-1.3.2.dist-info/METADATA,sha256=JwVHPE26gd4jVRHnFY0-3n7AELypOIGZoJh0c1_uhm8,2733
|
95
|
-
lamindb-1.3.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|