lamindb 1.4.0__py3-none-any.whl → 1.5.1__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 +203 -102
- 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/_tiledbsoma.py +29 -13
- 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 -3349
- lamindb/curators/_legacy.py +2056 -0
- lamindb/curators/core.py +1534 -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/migrations/0093_alter_schemacomponent_unique_together.py +16 -0
- lamindb/models/__init__.py +4 -1
- lamindb/models/_describe.py +21 -4
- lamindb/models/_feature_manager.py +382 -287
- lamindb/models/_label_manager.py +8 -2
- lamindb/models/artifact.py +177 -106
- lamindb/models/artifact_set.py +122 -0
- lamindb/models/collection.py +73 -52
- lamindb/models/core.py +1 -1
- lamindb/models/feature.py +51 -17
- lamindb/models/has_parents.py +69 -14
- lamindb/models/project.py +1 -1
- lamindb/models/query_manager.py +221 -22
- lamindb/models/query_set.py +247 -172
- lamindb/models/record.py +65 -247
- lamindb/models/run.py +4 -4
- lamindb/models/save.py +8 -2
- lamindb/models/schema.py +456 -184
- lamindb/models/transform.py +2 -2
- lamindb/models/ulabel.py +8 -5
- {lamindb-1.4.0.dist-info → lamindb-1.5.1.dist-info}/METADATA +6 -6
- {lamindb-1.4.0.dist-info → lamindb-1.5.1.dist-info}/RECORD +57 -43
- {lamindb-1.4.0.dist-info → lamindb-1.5.1.dist-info}/LICENSE +0 -0
- {lamindb-1.4.0.dist-info → lamindb-1.5.1.dist-info}/WHEEL +0 -0
lamindb/models/transform.py
CHANGED
@@ -35,7 +35,7 @@ if TYPE_CHECKING:
|
|
35
35
|
# does not inherit from TracksRun because the Transform
|
36
36
|
# is needed to define a run
|
37
37
|
class Transform(Record, IsVersioned):
|
38
|
-
"""Data transformations.
|
38
|
+
"""Data transformations such as scripts, notebooks, functions, or pipelines.
|
39
39
|
|
40
40
|
A "transform" can refer to a Python function, a script, a notebook, or a
|
41
41
|
pipeline. If you execute a transform, you generate a run
|
@@ -280,7 +280,7 @@ class Transform(Record, IsVersioned):
|
|
280
280
|
update_attributes(self, {"description": description})
|
281
281
|
return None
|
282
282
|
if revises is not None and key is not None and revises.key != key:
|
283
|
-
logger.
|
283
|
+
logger.important(f"renaming transform {revises.key} to {key}")
|
284
284
|
new_uid, version, key, description, revises = process_revises(
|
285
285
|
revises, version, key, description, Transform
|
286
286
|
)
|
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.1
|
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.5.
|
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
|
@@ -23,7 +23,7 @@ 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.3.
|
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,7 +40,7 @@ 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"
|
@@ -1,44 +1,54 @@
|
|
1
|
-
lamindb/__init__.py,sha256=
|
2
|
-
lamindb/_finish.py,sha256=
|
3
|
-
lamindb/_tracked.py,sha256=
|
1
|
+
lamindb/__init__.py,sha256=LgGBliPC6cKo95tRnosq_SuMBgRGjlQF0wNmEBHuo10,2676
|
2
|
+
lamindb/_finish.py,sha256=Wqb846pCErsx5ZPulAfdF5PJbWzgAdfbuYuf4FndfhY,20124
|
3
|
+
lamindb/_tracked.py,sha256=fse_H0ehc9WvU_l1572g7qya0sRdWCh22LZkq0XU4ic,4445
|
4
4
|
lamindb/_view.py,sha256=kSmG8X4ULQZEKxY7ESnthQqsUf1DEzoYGeTLYRU1I7s,4938
|
5
|
-
lamindb/errors.py,sha256=
|
6
|
-
lamindb/base/__init__.py,sha256=
|
7
|
-
lamindb/base/fields.py,sha256=
|
8
|
-
lamindb/base/ids.py,sha256=
|
9
|
-
lamindb/base/types.py,sha256=
|
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
|
10
11
|
lamindb/base/users.py,sha256=8MSmAvCKoUF15YsDE6BGLBXsFWpfoEEg8iDTKZ7kD48,848
|
11
12
|
lamindb/core/__init__.py,sha256=aaBq0UVjNolMynbT1V5hB6UrJm1tK0M6WHu_r6em9_4,604
|
12
13
|
lamindb/core/_compat.py,sha256=NLnKk1qk4xdgMV-QwFDnBnbio02ujjlF86icvhpdv4c,2029
|
13
|
-
lamindb/core/_context.py,sha256=
|
14
|
+
lamindb/core/_context.py,sha256=xKj4YGpgM3Dx8H7_rNf6EI3sC5JHScSYVgHw-QYbMp4,34679
|
14
15
|
lamindb/core/_mapped_collection.py,sha256=dxyZ1ZHFn5SBl1xILqN9N6TTUJP0PptVBV-2O0EdZww,25751
|
15
|
-
lamindb/core/_settings.py,sha256=
|
16
|
+
lamindb/core/_settings.py,sha256=DAeEN2Qswj6VDlM7OE5YtoteMfFZ61CmMwcS056_scE,6211
|
16
17
|
lamindb/core/_sync_git.py,sha256=Z7keuyS5X7CAj285sEbZIFExZF9mtjGH8DzKwz3xhHw,5881
|
17
18
|
lamindb/core/_track_environment.py,sha256=gKmXiL2meqJT65X-66p_GlonoxzBZXNwNm-G9gk0fS4,847
|
18
19
|
lamindb/core/exceptions.py,sha256=FMEoSvT3FvtLkxQAt2oDXPeaPem8V5x5UBbTsPFYU5w,53
|
19
|
-
lamindb/core/loaders.py,sha256=
|
20
|
+
lamindb/core/loaders.py,sha256=CFXQILMJTEF7IBwgP-ihuyBs0cV8rCoJmqIpzwD8OMA,5460
|
20
21
|
lamindb/core/types.py,sha256=yHr2Vn_p1Hepz_mBooXmsKudqu8Tco7lXZmVS_ORQIw,383
|
21
|
-
lamindb/core/datasets/__init__.py,sha256=
|
22
|
-
lamindb/core/datasets/_core.py,sha256=
|
22
|
+
lamindb/core/datasets/__init__.py,sha256=x5zn_vn8D4xMJOJ9hVc8wRwQk5ea81Un2tGHb2UfiHg,1893
|
23
|
+
lamindb/core/datasets/_core.py,sha256=uaP0snoKuAE5nDTL_XIgPeEoXSp5sTrNNAyOPDciZRU,20286
|
23
24
|
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
24
|
-
lamindb/core/datasets/_small.py,sha256=
|
25
|
+
lamindb/core/datasets/_small.py,sha256=HBzyTporAl-6Cr4DbDDEtzbU2ILKNxxiRM-GeZofqsw,2290
|
26
|
+
lamindb/core/datasets/mini_immuno.py,sha256=4d7TRNsq8GPIeLc-RlDcUMCfTdlPmrkCXW_0R749qyg,5428
|
25
27
|
lamindb/core/storage/__init__.py,sha256=JOIMu_7unbyhndtH1j0Q-9AvY8knSuc1IJO9sQnyBAQ,498
|
26
28
|
lamindb/core/storage/_anndata_accessor.py,sha256=oq2e4vlBnGhIeGR5a_8traOV3tKklZJUqcgKt0pEO8c,26187
|
27
29
|
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
28
|
-
lamindb/core/storage/_backed_access.py,sha256=
|
29
|
-
lamindb/core/storage/
|
30
|
-
lamindb/core/storage/
|
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=QLMOPjdxv9JFs9JR0Kqg1UTkJKNgwIDMeHAewB0-Lqg,11124
|
31
34
|
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
32
35
|
lamindb/core/storage/_zarr.py,sha256=cisYXU4_QXMF_ZY2pV52Incus6365mMxRphLaHO76W0,6801
|
33
|
-
lamindb/core/storage/objects.py,sha256=
|
36
|
+
lamindb/core/storage/objects.py,sha256=n1Kj1soxF-_iLFyNnHriVFcngw6nqEAd7aVm0Hm8Tcw,3017
|
34
37
|
lamindb/core/storage/paths.py,sha256=wJTD7qza87Xx7ZMo9HFHKgZWaVnst6qc4F2SzqvBMrE,7118
|
35
|
-
lamindb/core/subsettings/__init__.py,sha256=
|
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
|
36
40
|
lamindb/core/subsettings/_creation_settings.py,sha256=NGHWKqCFSzVNBxAr2VnmdYguiFdW29XUK7T9wRsVshg,906
|
37
|
-
lamindb/curators/__init__.py,sha256=
|
41
|
+
lamindb/curators/__init__.py,sha256=ZexikeaVunT24TqsR1NsSOCSBXDBigfGtFT55tBwqS8,371
|
42
|
+
lamindb/curators/_legacy.py,sha256=dTim3YFvdYyMsn6y8qSYkbCnnEI4tlaevN2-OO_qEx8,76174
|
43
|
+
lamindb/curators/core.py,sha256=hbmVGXRwBNxKRRwpS9h9JR7AiVWZzqgI848FBdekDAQ,59818
|
38
44
|
lamindb/curators/_cellxgene_schemas/__init__.py,sha256=zqlFzMNMDGEBe6DV0gBsBMpfc9UHvNv1EpBsz_ktMoA,7502
|
39
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
|
40
50
|
lamindb/integrations/__init__.py,sha256=RWGMYYIzr8zvmNPyVB4m-p4gMDhxdRbjES2Ed23OItw,215
|
41
|
-
lamindb/integrations/_vitessce.py,sha256=
|
51
|
+
lamindb/integrations/_vitessce.py,sha256=OvtnBAxlR_PvfeGjpySjzi2uRYsBwDwb3tMyhBzNVFk,4110
|
42
52
|
lamindb/migrations/0069_squashed.py,sha256=gMWv65ErtjJZyWWo1b4uFHXWa6MSuBcmqz4ElZ6GPf4,62639
|
43
53
|
lamindb/migrations/0070_lamindbv1_migrate_data.py,sha256=tyq_xi6U8TXi9C2Raf6v_UTtfyfqQOUIFJzYj4oCgAE,2429
|
44
54
|
lamindb/migrations/0071_lamindbv1_migrate_schema.py,sha256=r3PPpq4RK7rhrLWjhVACd5i-tSUTBF0X6Luc5v-g0Lg,25125
|
@@ -62,34 +72,38 @@ lamindb/migrations/0088_schema_components.py,sha256=9EeoEXX2mf8RtGv_eqOH9zpI2Dg7
|
|
62
72
|
lamindb/migrations/0089_subsequent_runs.py,sha256=ETXBqn-MwhFi3GIUbUqwM2j9un2o-0CI2Ux8b8FXuuw,5859
|
63
73
|
lamindb/migrations/0090_runproject_project_runs.py,sha256=Ab9wyGxc6xjBfj-36cqdTlRLj2vgQM3QC9o-mvF0MD8,2449
|
64
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/0093_alter_schemacomponent_unique_together.py,sha256=p6pCGU3xzOo5FuHE_COxVn6qLgRUAdfWXJjl4_euEKU,424
|
65
78
|
lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
-
lamindb/models/__init__.py,sha256=
|
67
|
-
lamindb/models/_describe.py,sha256=
|
79
|
+
lamindb/models/__init__.py,sha256=IFYoZfly3m0Me5Fr8sk6-KdYpVzkuug0lo8jvci00Kg,2080
|
80
|
+
lamindb/models/_describe.py,sha256=4PxaavWidEL8cyV2idbpC_7Zo0Jmjam3X1Bwe71IMaY,5489
|
68
81
|
lamindb/models/_django.py,sha256=2LFaTvIPtxIV8_T6Kx0cvquTetj7C3OcnKukUyC9msY,7705
|
69
|
-
lamindb/models/_feature_manager.py,sha256=
|
82
|
+
lamindb/models/_feature_manager.py,sha256=uMIcQMYrH1bHCqzovDbkDUOsBre_-mrg_7OS4RdoR8c,54666
|
70
83
|
lamindb/models/_from_values.py,sha256=-8l3_d2Nm14kzi1FjEYvBwyuucL-ZcDSjlMufIb4XoQ,13324
|
71
84
|
lamindb/models/_is_versioned.py,sha256=Th2_cBf9UWh27E6ANxg6LGmjBOumXFy7AjH0GG4FoXA,7601
|
72
|
-
lamindb/models/_label_manager.py,sha256=
|
85
|
+
lamindb/models/_label_manager.py,sha256=QOT6mz_rzPJ5p7hM1l-XzDWzyWUERpmAan2n_ma5wpI,12112
|
73
86
|
lamindb/models/_relations.py,sha256=ONjHPiWIa_Ur7zMNTa_9Uw7K-366GORyPvGoVjf4EQs,3681
|
74
|
-
lamindb/models/artifact.py,sha256=
|
87
|
+
lamindb/models/artifact.py,sha256=JDV9I5Pf47UgsyGGd4xgEvzH6sEmG37De7vJouaR4B0,110183
|
88
|
+
lamindb/models/artifact_set.py,sha256=VOZEGDo3m_9Yg_ftx3I2fwdydjHN61X_qV18N6xG4kM,4117
|
75
89
|
lamindb/models/can_curate.py,sha256=5dXHCRoJzLg2y9YDhpH7CyWexxliFHilwJ_UPjjZwRI,29188
|
76
|
-
lamindb/models/collection.py,sha256=
|
77
|
-
lamindb/models/core.py,sha256=
|
78
|
-
lamindb/models/feature.py,sha256=
|
90
|
+
lamindb/models/collection.py,sha256=TNXnrR86ZgsSfEvaOuAEItgZ947klTXXZspa7hpyVmw,27288
|
91
|
+
lamindb/models/core.py,sha256=A-W_Hdg4AmbBFBU38SEEVhOwSIzww5oNgYAQFnwOO7A,4018
|
92
|
+
lamindb/models/feature.py,sha256=WoT29eZ8DR6MTZgnztbRye3-zX4BRYfJ8HlhdenX2qA,28186
|
79
93
|
lamindb/models/flextable.py,sha256=ET9j0fTFYQIdXOZfwCnosXOag7nYD1DUV6_wZNqhvOs,5400
|
80
|
-
lamindb/models/has_parents.py,sha256=
|
81
|
-
lamindb/models/project.py,sha256=
|
82
|
-
lamindb/models/query_manager.py,sha256=
|
83
|
-
lamindb/models/query_set.py,sha256=
|
84
|
-
lamindb/models/record.py,sha256=
|
85
|
-
lamindb/models/run.py,sha256=
|
86
|
-
lamindb/models/save.py,sha256=
|
87
|
-
lamindb/models/schema.py,sha256=
|
88
|
-
lamindb/models/transform.py,sha256=
|
89
|
-
lamindb/models/ulabel.py,sha256=
|
94
|
+
lamindb/models/has_parents.py,sha256=A8OWsNotWlFrZB2pURRxp8EcHJ1kIlyV5eMnajGgkh4,20328
|
95
|
+
lamindb/models/project.py,sha256=Hm-5hLn-FffFK3J_68gt-AxVc6bo26fegwGFRw0Gp50,15225
|
96
|
+
lamindb/models/query_manager.py,sha256=mqsULCmUQf5ibpSXazca9ZYxyZwiDLuzSm8s6dPrl_M,10712
|
97
|
+
lamindb/models/query_set.py,sha256=xKh5QjAlHunktB1S4x9f42Fg0SP_-sK7XlyxStIRDSo,30385
|
98
|
+
lamindb/models/record.py,sha256=fomXuOcqkfiYF3zEdiUkYw9x00qP5flM7oseUUomhIo,61354
|
99
|
+
lamindb/models/run.py,sha256=FzqVQhYj4DXqlnmHvNIziOCAlx9K0wISXBLpom1Yb74,20688
|
100
|
+
lamindb/models/save.py,sha256=JTAaorKECx0ZeHaX0H9Yt4MDwOsT9F813WbSJkBIPaU,13339
|
101
|
+
lamindb/models/schema.py,sha256=5_31iIPh19eJn0rm1OTeFk0gtD0YUPrTbiPsglKWOeo,47753
|
102
|
+
lamindb/models/transform.py,sha256=LGnTR7g_rAx3YFAFv4l4_UzabruKQlnui1Y3tlWHwXk,12731
|
103
|
+
lamindb/models/ulabel.py,sha256=yn9ttz28MqDBh6ZgwH7cty6GHCJOzLJn2IEpspYosDo,8793
|
90
104
|
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
91
105
|
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
92
|
-
lamindb-1.
|
93
|
-
lamindb-1.
|
94
|
-
lamindb-1.
|
95
|
-
lamindb-1.
|
106
|
+
lamindb-1.5.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
107
|
+
lamindb-1.5.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
108
|
+
lamindb-1.5.1.dist-info/METADATA,sha256=juLd0ioSI6_wrvJOzGLsfY_8L019WlgLqEnIDj2OolA,2782
|
109
|
+
lamindb-1.5.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|