lamindb 0.76.8__py3-none-any.whl → 0.76.10__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 +114 -113
- lamindb/_artifact.py +1206 -1205
- lamindb/_can_validate.py +621 -579
- lamindb/_collection.py +390 -387
- lamindb/_curate.py +1603 -1601
- lamindb/_feature.py +155 -155
- lamindb/_feature_set.py +244 -242
- lamindb/_filter.py +23 -23
- lamindb/_finish.py +250 -256
- lamindb/_from_values.py +403 -382
- lamindb/_is_versioned.py +40 -40
- lamindb/_parents.py +476 -476
- lamindb/_query_manager.py +125 -125
- lamindb/_query_set.py +364 -362
- lamindb/_record.py +668 -649
- lamindb/_run.py +60 -57
- lamindb/_save.py +310 -308
- lamindb/_storage.py +14 -14
- lamindb/_transform.py +130 -127
- lamindb/_ulabel.py +56 -56
- lamindb/_utils.py +9 -9
- lamindb/_view.py +72 -72
- lamindb/core/__init__.py +94 -94
- lamindb/core/_context.py +590 -574
- lamindb/core/_data.py +510 -438
- lamindb/core/_django.py +209 -0
- lamindb/core/_feature_manager.py +994 -867
- lamindb/core/_label_manager.py +289 -253
- lamindb/core/_mapped_collection.py +631 -597
- lamindb/core/_settings.py +188 -187
- lamindb/core/_sync_git.py +138 -138
- lamindb/core/_track_environment.py +27 -27
- lamindb/core/datasets/__init__.py +59 -59
- lamindb/core/datasets/_core.py +581 -571
- lamindb/core/datasets/_fake.py +36 -36
- lamindb/core/exceptions.py +90 -90
- lamindb/core/fields.py +12 -12
- lamindb/core/loaders.py +164 -164
- lamindb/core/schema.py +56 -56
- lamindb/core/storage/__init__.py +25 -25
- lamindb/core/storage/_anndata_accessor.py +741 -740
- lamindb/core/storage/_anndata_sizes.py +41 -41
- lamindb/core/storage/_backed_access.py +98 -98
- lamindb/core/storage/_tiledbsoma.py +204 -204
- lamindb/core/storage/_valid_suffixes.py +21 -21
- lamindb/core/storage/_zarr.py +110 -110
- lamindb/core/storage/objects.py +62 -62
- lamindb/core/storage/paths.py +172 -172
- lamindb/core/subsettings/__init__.py +12 -12
- lamindb/core/subsettings/_creation_settings.py +38 -38
- lamindb/core/subsettings/_transform_settings.py +21 -21
- lamindb/core/types.py +19 -19
- lamindb/core/versioning.py +146 -158
- lamindb/integrations/__init__.py +12 -12
- lamindb/integrations/_vitessce.py +107 -107
- lamindb/setup/__init__.py +14 -14
- lamindb/setup/core/__init__.py +4 -4
- {lamindb-0.76.8.dist-info → lamindb-0.76.10.dist-info}/LICENSE +201 -201
- {lamindb-0.76.8.dist-info → lamindb-0.76.10.dist-info}/METADATA +8 -8
- lamindb-0.76.10.dist-info/RECORD +61 -0
- {lamindb-0.76.8.dist-info → lamindb-0.76.10.dist-info}/WHEEL +1 -1
- lamindb-0.76.8.dist-info/RECORD +0 -60
lamindb/core/__init__.py
CHANGED
@@ -1,94 +1,94 @@
|
|
1
|
-
"""Core library.
|
2
|
-
|
3
|
-
Registries:
|
4
|
-
|
5
|
-
.. autosummary::
|
6
|
-
:toctree: .
|
7
|
-
|
8
|
-
Record
|
9
|
-
Registry
|
10
|
-
QuerySet
|
11
|
-
QueryManager
|
12
|
-
RecordsList
|
13
|
-
FeatureManager
|
14
|
-
ParamManager
|
15
|
-
LabelManager
|
16
|
-
IsVersioned
|
17
|
-
CanValidate
|
18
|
-
HasParents
|
19
|
-
TracksRun
|
20
|
-
TracksUpdates
|
21
|
-
ParamValue
|
22
|
-
FeatureValue
|
23
|
-
InspectResult
|
24
|
-
fields
|
25
|
-
|
26
|
-
Curators:
|
27
|
-
|
28
|
-
.. autosummary::
|
29
|
-
:toctree: .
|
30
|
-
|
31
|
-
BaseCurator
|
32
|
-
DataFrameCurator
|
33
|
-
AnnDataCurator
|
34
|
-
MuDataCurator
|
35
|
-
CurateLookup
|
36
|
-
|
37
|
-
Settings & context:
|
38
|
-
|
39
|
-
.. autosummary::
|
40
|
-
:toctree: .
|
41
|
-
|
42
|
-
Settings
|
43
|
-
Context
|
44
|
-
|
45
|
-
Data loaders:
|
46
|
-
|
47
|
-
.. autosummary::
|
48
|
-
:toctree: .
|
49
|
-
|
50
|
-
MappedCollection
|
51
|
-
|
52
|
-
Modules:
|
53
|
-
|
54
|
-
.. autosummary::
|
55
|
-
:toctree: .
|
56
|
-
|
57
|
-
loaders
|
58
|
-
datasets
|
59
|
-
storage
|
60
|
-
types
|
61
|
-
exceptions
|
62
|
-
subsettings
|
63
|
-
|
64
|
-
"""
|
65
|
-
|
66
|
-
from lamin_utils._inspect import InspectResult
|
67
|
-
from lnschema_core.models import (
|
68
|
-
CanValidate,
|
69
|
-
FeatureValue,
|
70
|
-
HasParents,
|
71
|
-
IsVersioned,
|
72
|
-
ParamValue,
|
73
|
-
Record,
|
74
|
-
Registry,
|
75
|
-
TracksRun,
|
76
|
-
TracksUpdates,
|
77
|
-
)
|
78
|
-
|
79
|
-
from lamindb._curate import (
|
80
|
-
AnnDataCurator,
|
81
|
-
BaseCurator,
|
82
|
-
CurateLookup,
|
83
|
-
DataFrameCurator,
|
84
|
-
MuDataCurator,
|
85
|
-
)
|
86
|
-
from lamindb._query_manager import QueryManager
|
87
|
-
from lamindb._query_set import QuerySet, RecordsList
|
88
|
-
from lamindb.core._feature_manager import FeatureManager, ParamManager
|
89
|
-
from lamindb.core._label_manager import LabelManager
|
90
|
-
|
91
|
-
from . import _data, datasets, exceptions, fields, loaders, subsettings, types
|
92
|
-
from ._context import Context
|
93
|
-
from ._mapped_collection import MappedCollection
|
94
|
-
from ._settings import Settings
|
1
|
+
"""Core library.
|
2
|
+
|
3
|
+
Registries:
|
4
|
+
|
5
|
+
.. autosummary::
|
6
|
+
:toctree: .
|
7
|
+
|
8
|
+
Record
|
9
|
+
Registry
|
10
|
+
QuerySet
|
11
|
+
QueryManager
|
12
|
+
RecordsList
|
13
|
+
FeatureManager
|
14
|
+
ParamManager
|
15
|
+
LabelManager
|
16
|
+
IsVersioned
|
17
|
+
CanValidate
|
18
|
+
HasParents
|
19
|
+
TracksRun
|
20
|
+
TracksUpdates
|
21
|
+
ParamValue
|
22
|
+
FeatureValue
|
23
|
+
InspectResult
|
24
|
+
fields
|
25
|
+
|
26
|
+
Curators:
|
27
|
+
|
28
|
+
.. autosummary::
|
29
|
+
:toctree: .
|
30
|
+
|
31
|
+
BaseCurator
|
32
|
+
DataFrameCurator
|
33
|
+
AnnDataCurator
|
34
|
+
MuDataCurator
|
35
|
+
CurateLookup
|
36
|
+
|
37
|
+
Settings & context:
|
38
|
+
|
39
|
+
.. autosummary::
|
40
|
+
:toctree: .
|
41
|
+
|
42
|
+
Settings
|
43
|
+
Context
|
44
|
+
|
45
|
+
Data loaders:
|
46
|
+
|
47
|
+
.. autosummary::
|
48
|
+
:toctree: .
|
49
|
+
|
50
|
+
MappedCollection
|
51
|
+
|
52
|
+
Modules:
|
53
|
+
|
54
|
+
.. autosummary::
|
55
|
+
:toctree: .
|
56
|
+
|
57
|
+
loaders
|
58
|
+
datasets
|
59
|
+
storage
|
60
|
+
types
|
61
|
+
exceptions
|
62
|
+
subsettings
|
63
|
+
|
64
|
+
"""
|
65
|
+
|
66
|
+
from lamin_utils._inspect import InspectResult
|
67
|
+
from lnschema_core.models import (
|
68
|
+
CanValidate,
|
69
|
+
FeatureValue,
|
70
|
+
HasParents,
|
71
|
+
IsVersioned,
|
72
|
+
ParamValue,
|
73
|
+
Record,
|
74
|
+
Registry,
|
75
|
+
TracksRun,
|
76
|
+
TracksUpdates,
|
77
|
+
)
|
78
|
+
|
79
|
+
from lamindb._curate import (
|
80
|
+
AnnDataCurator,
|
81
|
+
BaseCurator,
|
82
|
+
CurateLookup,
|
83
|
+
DataFrameCurator,
|
84
|
+
MuDataCurator,
|
85
|
+
)
|
86
|
+
from lamindb._query_manager import QueryManager
|
87
|
+
from lamindb._query_set import QuerySet, RecordsList
|
88
|
+
from lamindb.core._feature_manager import FeatureManager, ParamManager
|
89
|
+
from lamindb.core._label_manager import LabelManager
|
90
|
+
|
91
|
+
from . import _data, datasets, exceptions, fields, loaders, subsettings, types
|
92
|
+
from ._context import Context
|
93
|
+
from ._mapped_collection import MappedCollection
|
94
|
+
from ._settings import Settings
|