lamindb 1.2a2__py3-none-any.whl → 1.3.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 +3 -1
- 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 +10 -0
- lamindb/curators/__init__.py +1272 -1517
- lamindb/curators/_cellxgene_schemas/__init__.py +190 -18
- lamindb/curators/_cellxgene_schemas/schema_versions.csv +43 -0
- lamindb/models/_feature_manager.py +65 -14
- lamindb/models/_from_values.py +113 -78
- lamindb/models/artifact.py +142 -98
- lamindb/models/can_curate.py +185 -216
- lamindb/models/feature.py +32 -2
- lamindb/models/project.py +69 -7
- lamindb/models/query_set.py +12 -2
- lamindb/models/record.py +48 -25
- lamindb/models/run.py +18 -1
- lamindb/models/schema.py +0 -8
- {lamindb-1.2a2.dist-info → lamindb-1.3.0.dist-info}/METADATA +7 -6
- {lamindb-1.2a2.dist-info → lamindb-1.3.0.dist-info}/RECORD +28 -27
- lamindb/curators/_cellxgene_schemas/schema_versions.yml +0 -104
- {lamindb-1.2a2.dist-info → lamindb-1.3.0.dist-info}/LICENSE +0 -0
- {lamindb-1.2a2.dist-info → lamindb-1.3.0.dist-info}/WHEEL +0 -0
@@ -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
|