lamindb 0.69.1__py3-none-any.whl → 0.69.3__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 +6 -4
- lamindb/_annotate.py +790 -0
- lamindb/_artifact.py +2 -8
- lamindb/_collection.py +16 -4
- lamindb/_feature.py +11 -9
- lamindb/_finish.py +194 -11
- lamindb/_query_set.py +6 -4
- lamindb/_run.py +3 -1
- lamindb/_save.py +34 -21
- lamindb/core/__init__.py +4 -0
- lamindb/core/_data.py +3 -0
- lamindb/core/_feature_manager.py +4 -3
- lamindb/core/_run_context.py +17 -5
- lamindb/core/storage/_backed_access.py +48 -11
- lamindb/core/storage/file.py +2 -7
- {lamindb-0.69.1.dist-info → lamindb-0.69.3.dist-info}/METADATA +7 -7
- {lamindb-0.69.1.dist-info → lamindb-0.69.3.dist-info}/RECORD +20 -25
- lamindb/validation/__init__.py +0 -19
- lamindb/validation/_anndata_validator.py +0 -130
- lamindb/validation/_lookup.py +0 -38
- lamindb/validation/_register.py +0 -214
- lamindb/validation/_validate.py +0 -131
- lamindb/validation/_validator.py +0 -205
- /lamindb/{_validate.py → _can_validate.py} +0 -0
- {lamindb-0.69.1.dist-info → lamindb-0.69.3.dist-info}/LICENSE +0 -0
- {lamindb-0.69.1.dist-info → lamindb-0.69.3.dist-info}/WHEEL +0 -0
lamindb/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""A data framework for biology.
|
2
2
|
|
3
|
-
Registries
|
3
|
+
Registries:
|
4
4
|
|
5
5
|
.. autosummary::
|
6
6
|
:toctree: .
|
@@ -31,7 +31,7 @@ Modules & settings:
|
|
31
31
|
.. autosummary::
|
32
32
|
:toctree: .
|
33
33
|
|
34
|
-
|
34
|
+
Annotate
|
35
35
|
settings
|
36
36
|
setup
|
37
37
|
UPath
|
@@ -39,7 +39,7 @@ Modules & settings:
|
|
39
39
|
|
40
40
|
"""
|
41
41
|
|
42
|
-
__version__ = "0.69.
|
42
|
+
__version__ = "0.69.3" # denote a release candidate for 0.1.0 with 0.1rc1
|
43
43
|
|
44
44
|
import os as _os
|
45
45
|
|
@@ -71,7 +71,9 @@ if _check_instance_setup(from_lamindb=True):
|
|
71
71
|
)
|
72
72
|
|
73
73
|
from . import (
|
74
|
+
_annotate,
|
74
75
|
_artifact,
|
76
|
+
_can_validate,
|
75
77
|
_collection,
|
76
78
|
_feature,
|
77
79
|
_feature_set,
|
@@ -82,11 +84,11 @@ if _check_instance_setup(from_lamindb=True):
|
|
82
84
|
_storage,
|
83
85
|
_transform,
|
84
86
|
_ulabel,
|
85
|
-
_validate,
|
86
87
|
core,
|
87
88
|
)
|
88
89
|
|
89
90
|
dev = core # backward compat
|
91
|
+
from ._annotate import Annotate
|
90
92
|
from ._finish import finish
|
91
93
|
from ._save import save
|
92
94
|
from ._view import view
|