lamindb 1.2a2__py3-none-any.whl → 1.3.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 +3 -1
- lamindb/_view.py +2 -2
- lamindb/base/types.py +50 -11
- lamindb/core/_compat.py +60 -0
- lamindb/core/_context.py +15 -12
- lamindb/core/datasets/__init__.py +1 -0
- lamindb/core/datasets/_core.py +23 -0
- lamindb/core/datasets/_small.py +16 -2
- lamindb/core/loaders.py +22 -12
- lamindb/core/storage/_tiledbsoma.py +2 -2
- lamindb/core/storage/_zarr.py +84 -26
- lamindb/core/storage/objects.py +45 -44
- lamindb/core/types.py +11 -1
- lamindb/curators/__init__.py +1430 -1665
- lamindb/curators/_cellxgene_schemas/__init__.py +190 -18
- lamindb/curators/_cellxgene_schemas/schema_versions.csv +43 -0
- lamindb/models/_feature_manager.py +86 -42
- lamindb/models/_from_values.py +110 -119
- lamindb/models/_label_manager.py +17 -10
- lamindb/models/artifact.py +170 -102
- lamindb/models/can_curate.py +200 -231
- lamindb/models/feature.py +76 -47
- lamindb/models/project.py +69 -7
- lamindb/models/query_set.py +12 -2
- lamindb/models/record.py +77 -50
- lamindb/models/run.py +20 -7
- lamindb/models/schema.py +7 -15
- {lamindb-1.2a2.dist-info → lamindb-1.3.1.dist-info}/METADATA +8 -7
- {lamindb-1.2a2.dist-info → lamindb-1.3.1.dist-info}/RECORD +31 -30
- lamindb/curators/_cellxgene_schemas/schema_versions.yml +0 -104
- {lamindb-1.2a2.dist-info → lamindb-1.3.1.dist-info}/LICENSE +0 -0
- {lamindb-1.2a2.dist-info → lamindb-1.3.1.dist-info}/WHEEL +0 -0
lamindb/models/run.py
CHANGED
@@ -23,11 +23,13 @@ from lamindb.errors import ValidationError
|
|
23
23
|
|
24
24
|
from ..base.ids import base62_20
|
25
25
|
from .can_curate import CanCurate
|
26
|
-
from .record import BasicRecord, LinkORM, Record
|
26
|
+
from .record import BasicRecord, LinkORM, Record, Registry
|
27
27
|
|
28
28
|
if TYPE_CHECKING:
|
29
29
|
from datetime import datetime
|
30
30
|
|
31
|
+
from lamindb.base.types import Dtype, FieldAttr
|
32
|
+
|
31
33
|
from .artifact import Artifact
|
32
34
|
from .collection import Collection
|
33
35
|
from .project import Project
|
@@ -206,12 +208,8 @@ class Param(Record, CanCurate, TracksRun, TracksUpdates):
|
|
206
208
|
_name_field: str = "name"
|
207
209
|
|
208
210
|
name: str = CharField(max_length=100, db_index=True)
|
209
|
-
dtype:
|
210
|
-
"""Data type ("
|
211
|
-
|
212
|
-
For categorical types, can define from which registry values are
|
213
|
-
sampled, e.g., `cat[ULabel]` or `cat[bionty.CellType]`.
|
214
|
-
"""
|
211
|
+
dtype: Dtype | None = CharField(db_index=True, null=True)
|
212
|
+
"""Data type (:class:`~lamindb.base.types.Dtype`)."""
|
215
213
|
type: Param | None = ForeignKey("self", PROTECT, null=True, related_name="records")
|
216
214
|
"""Type of param (e.g., 'Pipeline', 'ModelTraining', 'PostProcessing').
|
217
215
|
|
@@ -235,6 +233,21 @@ class Param(Record, CanCurate, TracksRun, TracksUpdates):
|
|
235
233
|
values: ParamValue
|
236
234
|
"""Values for this parameter."""
|
237
235
|
|
236
|
+
@overload
|
237
|
+
def __init__(
|
238
|
+
self,
|
239
|
+
name: str,
|
240
|
+
dtype: Dtype | Registry | list[Registry] | FieldAttr,
|
241
|
+
type: Param | None = None,
|
242
|
+
is_type: bool = False,
|
243
|
+
): ...
|
244
|
+
|
245
|
+
@overload
|
246
|
+
def __init__(
|
247
|
+
self,
|
248
|
+
*db_args,
|
249
|
+
): ...
|
250
|
+
|
238
251
|
def __init__(self, *args, **kwargs):
|
239
252
|
from .feature import process_init_feature_param
|
240
253
|
|
lamindb/models/schema.py
CHANGED
@@ -28,8 +28,8 @@ from ._relations import (
|
|
28
28
|
from .can_curate import CanCurate
|
29
29
|
from .feature import (
|
30
30
|
Feature,
|
31
|
-
|
32
|
-
|
31
|
+
serialize_dtype,
|
32
|
+
serialize_pandas_dtype,
|
33
33
|
)
|
34
34
|
from .record import (
|
35
35
|
BasicRecord,
|
@@ -352,7 +352,7 @@ class Schema(Record, CanCurate, TracksRun):
|
|
352
352
|
if otype is None:
|
353
353
|
raise InvalidArgument("Please pass otype != None for composite schemas")
|
354
354
|
if itype is not None and not isinstance(itype, str):
|
355
|
-
itype_str =
|
355
|
+
itype_str = serialize_dtype(itype, is_itype=True)
|
356
356
|
else:
|
357
357
|
itype_str = itype
|
358
358
|
validated_kwargs = {
|
@@ -482,14 +482,14 @@ class Schema(Record, CanCurate, TracksRun):
|
|
482
482
|
organism: Record | str | None = None,
|
483
483
|
source: Record | None = None,
|
484
484
|
) -> Schema | None:
|
485
|
-
"""Create
|
485
|
+
"""Create schema for valid columns."""
|
486
486
|
registry = field.field.model
|
487
487
|
validated = registry.validate(
|
488
488
|
df.columns, field=field, mute=mute, organism=organism
|
489
489
|
)
|
490
490
|
if validated.sum() == 0:
|
491
|
-
if mute
|
492
|
-
logger.warning("no validated features, skip creating
|
491
|
+
if not mute:
|
492
|
+
logger.warning("no validated features, skip creating schema")
|
493
493
|
return None
|
494
494
|
if registry == Feature:
|
495
495
|
validated_features = Feature.from_values( # type: ignore
|
@@ -502,7 +502,7 @@ class Schema(Record, CanCurate, TracksRun):
|
|
502
502
|
dtypes = [col.dtype for (_, col) in df.loc[:, validated].items()]
|
503
503
|
if len(set(dtypes)) != 1:
|
504
504
|
raise ValueError(f"data types are heterogeneous: {set(dtypes)}")
|
505
|
-
dtype =
|
505
|
+
dtype = serialize_pandas_dtype(dtypes[0])
|
506
506
|
validated_features = registry.from_values(
|
507
507
|
df.columns[validated],
|
508
508
|
field=field,
|
@@ -585,14 +585,6 @@ class Schema(Record, CanCurate, TracksRun):
|
|
585
585
|
self._aux["af"] = {}
|
586
586
|
self._aux["af"]["0"] = value
|
587
587
|
|
588
|
-
@coerce_dtype.setter
|
589
|
-
def coerce_dtype(self, value: bool) -> None:
|
590
|
-
if self._aux is None:
|
591
|
-
self._aux = {}
|
592
|
-
if "af" not in self._aux:
|
593
|
-
self._aux["af"] = {}
|
594
|
-
self._aux["af"]["0"] = value
|
595
|
-
|
596
588
|
# @property
|
597
589
|
# def index_feature(self) -> None | Feature:
|
598
590
|
# # index_feature: `Record | None = None` A :class:`~lamindb.Feature` to validate the index of a `DataFrame`.
|
@@ -1,16 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lamindb
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.1
|
4
4
|
Summary: A data framework for biology.
|
5
5
|
Author-email: Lamin Labs <open-source@lamin.ai>
|
6
|
-
Requires-Python: >=3.10,<3.
|
6
|
+
Requires-Python: >=3.10,<3.14
|
7
7
|
Description-Content-Type: text/markdown
|
8
8
|
Classifier: Programming Language :: Python :: 3.10
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
11
|
-
|
12
|
-
Requires-Dist:
|
13
|
-
Requires-Dist:
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
12
|
+
Requires-Dist: lamin_utils==0.13.11
|
13
|
+
Requires-Dist: lamin_cli==1.2.0
|
14
|
+
Requires-Dist: lamindb_setup[aws]==1.4.0
|
14
15
|
Requires-Dist: pyyaml
|
15
16
|
Requires-Dist: pyarrow
|
16
17
|
Requires-Dist: pandera
|
@@ -22,7 +23,7 @@ Requires-Dist: anndata>=0.8.0,<=0.11.3
|
|
22
23
|
Requires-Dist: fsspec
|
23
24
|
Requires-Dist: graphviz
|
24
25
|
Requires-Dist: psycopg2-binary
|
25
|
-
Requires-Dist: bionty ; extra == "bionty"
|
26
|
+
Requires-Dist: bionty>=1.2a1 ; extra == "bionty"
|
26
27
|
Requires-Dist: cellregistry ; extra == "cellregistry"
|
27
28
|
Requires-Dist: clinicore ; extra == "clinicore"
|
28
29
|
Requires-Dist: tomlkit ; extra == "dev"
|
@@ -39,7 +40,7 @@ Requires-Dist: faker-biology ; extra == "dev"
|
|
39
40
|
Requires-Dist: django-schema-graph ; extra == "erdiagram"
|
40
41
|
Requires-Dist: readfcs>=2.0.1 ; extra == "fcs"
|
41
42
|
Requires-Dist: lamindb_setup[gcp] ; extra == "gcp"
|
42
|
-
Requires-Dist: nbproject==0.10.
|
43
|
+
Requires-Dist: nbproject==0.10.6 ; extra == "jupyter"
|
43
44
|
Requires-Dist: jupytext ; extra == "jupyter"
|
44
45
|
Requires-Dist: nbconvert>=7.2.1 ; extra == "jupyter"
|
45
46
|
Requires-Dist: mistune!=3.1.0 ; extra == "jupyter"
|
@@ -1,41 +1,42 @@
|
|
1
|
-
lamindb/__init__.py,sha256=
|
1
|
+
lamindb/__init__.py,sha256=oZOWUS3k5h0WraaCC0_gGCmoTTp64_BSia24_UVNwOQ,2468
|
2
2
|
lamindb/_finish.py,sha256=UK9XW1qZCd32Nqz0cdKYmpX9ilFU0nGyNb6Urwfx_Nw,19612
|
3
3
|
lamindb/_tracked.py,sha256=JKzYEpqVojklTms0VpP-tU34AHVZG8a13dSl3CfIzwQ,4472
|
4
|
-
lamindb/_view.py,sha256=
|
4
|
+
lamindb/_view.py,sha256=kSmG8X4ULQZEKxY7ESnthQqsUf1DEzoYGeTLYRU1I7s,4938
|
5
5
|
lamindb/errors.py,sha256=F6einUIStsTgWcBfSlG8eGf2Q6yWUaqMlSULqmkV8GA,1734
|
6
6
|
lamindb/base/__init__.py,sha256=qS7BM1YVHWridJp2CsiH5Rb38z6kkuDYCjerNHvI2qQ,263
|
7
7
|
lamindb/base/fields.py,sha256=RdwYHQmB7B-jopD_K2QNL5vjhOelu7DWGgqQItXr3pg,8024
|
8
8
|
lamindb/base/ids.py,sha256=OOgD5vxry6s2vSslb8-E9zEykDMpyhnungfT844DhSU,1547
|
9
|
-
lamindb/base/types.py,sha256=
|
9
|
+
lamindb/base/types.py,sha256=w_dQ2t9Htk8030OA_blksY9FG4NNcx3p7qJumFkBWkg,2714
|
10
10
|
lamindb/base/users.py,sha256=8MSmAvCKoUF15YsDE6BGLBXsFWpfoEEg8iDTKZ7kD48,848
|
11
11
|
lamindb/core/__init__.py,sha256=aaBq0UVjNolMynbT1V5hB6UrJm1tK0M6WHu_r6em9_4,604
|
12
|
-
lamindb/core/
|
12
|
+
lamindb/core/_compat.py,sha256=NLnKk1qk4xdgMV-QwFDnBnbio02ujjlF86icvhpdv4c,2029
|
13
|
+
lamindb/core/_context.py,sha256=0JqPGrMsri8XhFwg7ugV-7xBJMF5czR2S610bCpLdZM,30411
|
13
14
|
lamindb/core/_mapped_collection.py,sha256=dxyZ1ZHFn5SBl1xILqN9N6TTUJP0PptVBV-2O0EdZww,25751
|
14
15
|
lamindb/core/_settings.py,sha256=WLjFn9XunEZ9zMy2Qvmc3aJqWMXw2hcG0EBNX9wjkfU,5706
|
15
16
|
lamindb/core/_sync_git.py,sha256=Z7keuyS5X7CAj285sEbZIFExZF9mtjGH8DzKwz3xhHw,5881
|
16
17
|
lamindb/core/_track_environment.py,sha256=gKmXiL2meqJT65X-66p_GlonoxzBZXNwNm-G9gk0fS4,847
|
17
18
|
lamindb/core/exceptions.py,sha256=FMEoSvT3FvtLkxQAt2oDXPeaPem8V5x5UBbTsPFYU5w,53
|
18
|
-
lamindb/core/loaders.py,sha256=
|
19
|
-
lamindb/core/types.py,sha256=
|
20
|
-
lamindb/core/datasets/__init__.py,sha256=
|
21
|
-
lamindb/core/datasets/_core.py,sha256=
|
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
|
22
23
|
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
23
|
-
lamindb/core/datasets/_small.py,sha256=
|
24
|
+
lamindb/core/datasets/_small.py,sha256=NuovAoA1oMpknQUASErdZgRz4byRQvT4ZgfQRX3GaHY,5597
|
24
25
|
lamindb/core/storage/__init__.py,sha256=JOIMu_7unbyhndtH1j0Q-9AvY8knSuc1IJO9sQnyBAQ,498
|
25
26
|
lamindb/core/storage/_anndata_accessor.py,sha256=oq2e4vlBnGhIeGR5a_8traOV3tKklZJUqcgKt0pEO8c,26187
|
26
27
|
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
27
28
|
lamindb/core/storage/_backed_access.py,sha256=98KdO0Qw6ZrYHAnHG-zUzjxr8Jb-ujIWtGWjg_Wdk9c,3854
|
28
29
|
lamindb/core/storage/_pyarrow_dataset.py,sha256=Kvrwuw1-44WpyI7iuKWV5XU3u-wI9-hz0FiXPzxErmI,1892
|
29
|
-
lamindb/core/storage/_tiledbsoma.py,sha256=
|
30
|
+
lamindb/core/storage/_tiledbsoma.py,sha256=gOcfgMHToI142KqyOYWJMOzmFMLos660k6ZFaAooYPc,10308
|
30
31
|
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
31
|
-
lamindb/core/storage/_zarr.py,sha256=
|
32
|
-
lamindb/core/storage/objects.py,sha256=
|
32
|
+
lamindb/core/storage/_zarr.py,sha256=cisYXU4_QXMF_ZY2pV52Incus6365mMxRphLaHO76W0,6801
|
33
|
+
lamindb/core/storage/objects.py,sha256=l2JTHI7oLMH7JJqxwpyIgMXZJ3gaGv7xl_Jr21wWFAs,2809
|
33
34
|
lamindb/core/storage/paths.py,sha256=wJTD7qza87Xx7ZMo9HFHKgZWaVnst6qc4F2SzqvBMrE,7118
|
34
35
|
lamindb/core/subsettings/__init__.py,sha256=j6G9WAJLK-x9FzPSFw-HJUmOseZKGTbK-oLTKI_X_zs,126
|
35
36
|
lamindb/core/subsettings/_creation_settings.py,sha256=NGHWKqCFSzVNBxAr2VnmdYguiFdW29XUK7T9wRsVshg,906
|
36
|
-
lamindb/curators/__init__.py,sha256=
|
37
|
-
lamindb/curators/_cellxgene_schemas/__init__.py,sha256=
|
38
|
-
lamindb/curators/_cellxgene_schemas/schema_versions.
|
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
|
39
40
|
lamindb/integrations/__init__.py,sha256=RWGMYYIzr8zvmNPyVB4m-p4gMDhxdRbjES2Ed23OItw,215
|
40
41
|
lamindb/integrations/_vitessce.py,sha256=VgO9zAlTSIKDo1wEef_Q4BudTAVtRSZmuzRdCGwBvJk,4016
|
41
42
|
lamindb/migrations/0069_squashed.py,sha256=gMWv65ErtjJZyWWo1b4uFHXWa6MSuBcmqz4ElZ6GPf4,62639
|
@@ -65,30 +66,30 @@ lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
65
66
|
lamindb/models/__init__.py,sha256=NlnrPiBSv93PttHDrAYnF3RTfiIhgC7QOE_mP0M9Ddc,1934
|
66
67
|
lamindb/models/_describe.py,sha256=B-lmzc8AYaeuKwwRRsF0q8qT6P1i93sEjYkfl0NuyWQ,4926
|
67
68
|
lamindb/models/_django.py,sha256=2LFaTvIPtxIV8_T6Kx0cvquTetj7C3OcnKukUyC9msY,7705
|
68
|
-
lamindb/models/_feature_manager.py,sha256=
|
69
|
-
lamindb/models/_from_values.py,sha256
|
69
|
+
lamindb/models/_feature_manager.py,sha256=f81DJElY1XXX-ps9tfnk3ddJJBzDO-QPzIP-Dn4rxe8,50058
|
70
|
+
lamindb/models/_from_values.py,sha256=3IkJTA3KTJHyuVZ1Hki1MFa4PKbHrK6mhPsshYygku8,13327
|
70
71
|
lamindb/models/_is_versioned.py,sha256=ivtC0t96YI6eaMFqg0ctWY3ert96I_2R-DI5O0Zx7kU,8011
|
71
|
-
lamindb/models/_label_manager.py,sha256=
|
72
|
+
lamindb/models/_label_manager.py,sha256=rdTAjN0PNxIuHv289_JPoxvdPVVOTgBWhjWqBpKEnm4,11935
|
72
73
|
lamindb/models/_relations.py,sha256=ONjHPiWIa_Ur7zMNTa_9Uw7K-366GORyPvGoVjf4EQs,3681
|
73
|
-
lamindb/models/artifact.py,sha256=
|
74
|
-
lamindb/models/can_curate.py,sha256=
|
74
|
+
lamindb/models/artifact.py,sha256=nWTUIkV8RyK_mBJ-aTEGOiF-Q1HG4Bi8wgTkQZ5MxE8,103678
|
75
|
+
lamindb/models/can_curate.py,sha256=_XraPciWg75gnT1j5HgXhsaUFOVtO27wrVageQgsxqM,29071
|
75
76
|
lamindb/models/collection.py,sha256=P1E4olaqaPsVYdcQe8AgH_yUUdeQBa6QcyD1Y6Gedjo,26311
|
76
77
|
lamindb/models/core.py,sha256=cjQGk5r0Rzf3zTeC0gn_GB29UfKq34l4hThsNNVhi3o,3965
|
77
|
-
lamindb/models/feature.py,sha256=
|
78
|
+
lamindb/models/feature.py,sha256=OTmh0zIESnMDVgIIJYlL8018qKSAKYLuoG1cYlhTk-g,26086
|
78
79
|
lamindb/models/flextable.py,sha256=ET9j0fTFYQIdXOZfwCnosXOag7nYD1DUV6_wZNqhvOs,5400
|
79
80
|
lamindb/models/has_parents.py,sha256=PEGDiNTK7ikHBHAGsiHK4e6TA9jqUFRom1HSQuyReyE,17942
|
80
|
-
lamindb/models/project.py,sha256=
|
81
|
+
lamindb/models/project.py,sha256=WSOtM6-hKPeDNOCR6Frq1bJxc27j0HJWhCmFh5L3CiM,15174
|
81
82
|
lamindb/models/query_manager.py,sha256=RqF842cqloAv5z4zLDlWAZfVkLQbhCPry6WQW3CaznI,3713
|
82
|
-
lamindb/models/query_set.py,sha256=
|
83
|
-
lamindb/models/record.py,sha256=
|
84
|
-
lamindb/models/run.py,sha256=
|
83
|
+
lamindb/models/query_set.py,sha256=buJ-zuua5MTqeEE8WD3lOBZXs19k_r4DuRWPB8Bai5Y,27060
|
84
|
+
lamindb/models/record.py,sha256=E7rgMmmoAwuVBhj1Na3zEVt0TzH5McvPfjC3gyp8Crs,65100
|
85
|
+
lamindb/models/run.py,sha256=_qCFjeGcK1-MEpRJCdnl6NScCO7Rye3lYl56wEbq9mM,18716
|
85
86
|
lamindb/models/save.py,sha256=VEq4kmDyDiw9zTQY6meA9c5yT_YU5ldFzRDgKqCX59M,13031
|
86
|
-
lamindb/models/schema.py,sha256=
|
87
|
+
lamindb/models/schema.py,sha256=zbzzQ8UOLqhJh-PC0CoRu-sN5-NnIFXoDtj1KSPhj_s,28672
|
87
88
|
lamindb/models/transform.py,sha256=PbtjakPWmw0iuCG0HPEbysISVX_CoIE2KAPF7L18Vak,13064
|
88
89
|
lamindb/models/ulabel.py,sha256=A8zJcRiGNmq24njLJv7_FuVZJmdtSkN-MSKw5c1QJMo,8605
|
89
90
|
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
90
91
|
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
91
|
-
lamindb-1.
|
92
|
-
lamindb-1.
|
93
|
-
lamindb-1.
|
94
|
-
lamindb-1.
|
92
|
+
lamindb-1.3.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
93
|
+
lamindb-1.3.1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
94
|
+
lamindb-1.3.1.dist-info/METADATA,sha256=tksiQOHsdm3S2VgD3jxm4rYN6vCwX1-wKeXYgJIMSIM,2733
|
95
|
+
lamindb-1.3.1.dist-info/RECORD,,
|
@@ -1,104 +0,0 @@
|
|
1
|
-
schema-version:
|
2
|
-
4.0.0:
|
3
|
-
CellType:
|
4
|
-
cl:
|
5
|
-
all: "2023-08-24"
|
6
|
-
ExperimentalFactor:
|
7
|
-
efo:
|
8
|
-
all: "3.57.0"
|
9
|
-
Ethnicity:
|
10
|
-
hancestro:
|
11
|
-
human: "3.0"
|
12
|
-
DevelopmentalStage:
|
13
|
-
hsapdv:
|
14
|
-
human: "2020-03-10"
|
15
|
-
mmusdv:
|
16
|
-
mouse: "2020-03-10"
|
17
|
-
Disease:
|
18
|
-
mondo:
|
19
|
-
all: "2023-08-02"
|
20
|
-
Organism:
|
21
|
-
ncbitaxon:
|
22
|
-
all: "2023-06-20"
|
23
|
-
Phenotype:
|
24
|
-
pato:
|
25
|
-
all: "2023-05-18"
|
26
|
-
Tissue:
|
27
|
-
uberon:
|
28
|
-
all: "2023-09-05"
|
29
|
-
Gene:
|
30
|
-
genecode:
|
31
|
-
human: "v38"
|
32
|
-
mouse: "vM27"
|
33
|
-
5.0.0:
|
34
|
-
CellType:
|
35
|
-
cl:
|
36
|
-
all: "2024-01-04"
|
37
|
-
ExperimentalFactor:
|
38
|
-
efo:
|
39
|
-
all: "3.62.0"
|
40
|
-
Ethnicity:
|
41
|
-
hancestro:
|
42
|
-
human: "3.0"
|
43
|
-
DevelopmentalStage:
|
44
|
-
hsapdv:
|
45
|
-
human: "2020-03-10"
|
46
|
-
mmusdv:
|
47
|
-
mouse: "2020-03-10"
|
48
|
-
Disease:
|
49
|
-
mondo:
|
50
|
-
all: "2024-01-03"
|
51
|
-
Organism:
|
52
|
-
ncbitaxon:
|
53
|
-
all: "2023-06-20"
|
54
|
-
ensembl:
|
55
|
-
vertebrates: "release-110"
|
56
|
-
Phenotype:
|
57
|
-
pato:
|
58
|
-
all: "2023-05-18"
|
59
|
-
Tissue:
|
60
|
-
uberon:
|
61
|
-
all: "2024-01-18"
|
62
|
-
Gene:
|
63
|
-
genecode:
|
64
|
-
human: "v44"
|
65
|
-
mouse: "vM33"
|
66
|
-
ensembl:
|
67
|
-
human: "release-110"
|
68
|
-
mouse: "release-110"
|
69
|
-
5.1.0:
|
70
|
-
CellType:
|
71
|
-
cl:
|
72
|
-
all: "2024-04-05"
|
73
|
-
ExperimentalFactor:
|
74
|
-
efo:
|
75
|
-
all: "3.65.0"
|
76
|
-
Ethnicity:
|
77
|
-
hancestro:
|
78
|
-
human: "3.0"
|
79
|
-
DevelopmentalStage:
|
80
|
-
hsapdv:
|
81
|
-
human: "2020-03-10"
|
82
|
-
mmusdv:
|
83
|
-
mouse: "2020-03-10"
|
84
|
-
Disease:
|
85
|
-
mondo:
|
86
|
-
all: "2024-05-08"
|
87
|
-
Organism:
|
88
|
-
ncbitaxon:
|
89
|
-
all: "2023-06-20"
|
90
|
-
ensembl:
|
91
|
-
vertebrates: "release-110"
|
92
|
-
Phenotype:
|
93
|
-
pato:
|
94
|
-
all: "2023-05-18"
|
95
|
-
Tissue:
|
96
|
-
uberon:
|
97
|
-
all: "2024-03-22"
|
98
|
-
Gene:
|
99
|
-
genecode:
|
100
|
-
human: "v44"
|
101
|
-
mouse: "vM33"
|
102
|
-
ensembl:
|
103
|
-
human: "release-110"
|
104
|
-
mouse: "release-110"
|
File without changes
|
File without changes
|