lamindb 0.77.3__py3-none-any.whl → 1.0rc1__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 +39 -32
- lamindb/_artifact.py +95 -64
- lamindb/_can_curate.py +13 -6
- lamindb/_collection.py +51 -49
- lamindb/_feature.py +9 -9
- lamindb/_finish.py +92 -79
- lamindb/_from_values.py +13 -10
- lamindb/_is_versioned.py +2 -1
- lamindb/_parents.py +23 -16
- lamindb/_query_manager.py +3 -3
- lamindb/_query_set.py +85 -18
- lamindb/_record.py +114 -41
- lamindb/_run.py +3 -3
- lamindb/_save.py +5 -6
- lamindb/{_feature_set.py → _schema.py} +34 -31
- lamindb/_storage.py +2 -1
- lamindb/_transform.py +51 -23
- lamindb/_ulabel.py +17 -8
- lamindb/_view.py +13 -13
- lamindb/base/__init__.py +24 -0
- lamindb/base/fields.py +281 -0
- lamindb/base/ids.py +103 -0
- lamindb/base/types.py +51 -0
- lamindb/base/users.py +30 -0
- lamindb/base/validation.py +67 -0
- lamindb/core/__init__.py +18 -15
- lamindb/core/_context.py +295 -224
- lamindb/core/_data.py +44 -49
- lamindb/core/_describe.py +41 -31
- lamindb/core/_django.py +29 -27
- lamindb/core/_feature_manager.py +130 -129
- lamindb/core/_label_manager.py +7 -8
- lamindb/core/_mapped_collection.py +17 -14
- lamindb/core/_settings.py +1 -12
- lamindb/core/_sync_git.py +56 -9
- lamindb/core/_track_environment.py +1 -1
- lamindb/core/datasets/_core.py +5 -6
- lamindb/core/exceptions.py +0 -7
- lamindb/core/fields.py +1 -1
- lamindb/core/loaders.py +0 -1
- lamindb/core/{schema.py → relations.py} +22 -19
- lamindb/core/storage/_anndata_accessor.py +1 -2
- lamindb/core/storage/_backed_access.py +2 -1
- lamindb/core/storage/_tiledbsoma.py +38 -13
- lamindb/core/storage/objects.py +1 -1
- lamindb/core/storage/paths.py +13 -8
- lamindb/core/subsettings/__init__.py +0 -2
- lamindb/core/types.py +2 -23
- lamindb/core/versioning.py +11 -7
- lamindb/{_curate.py → curators/__init__.py} +122 -23
- lamindb/curators/_spatial.py +528 -0
- lamindb/integrations/_vitessce.py +1 -3
- lamindb/migrations/0052_squashed.py +1261 -0
- lamindb/migrations/0053_alter_featureset_hash_alter_paramvalue_created_by_and_more.py +57 -0
- lamindb/migrations/0054_alter_feature_previous_runs_and_more.py +35 -0
- lamindb/migrations/0055_artifact_type_artifactparamvalue_and_more.py +61 -0
- lamindb/migrations/0056_rename_ulabel_ref_is_name_artifactulabel_label_ref_is_name_and_more.py +22 -0
- lamindb/migrations/0057_link_models_latest_report_and_others.py +356 -0
- lamindb/migrations/0058_artifact__actions_collection__actions.py +22 -0
- lamindb/migrations/0059_alter_artifact__accessor_alter_artifact__hash_type_and_more.py +31 -0
- lamindb/migrations/0060_alter_artifact__actions.py +22 -0
- lamindb/migrations/0061_alter_collection_meta_artifact_alter_run_environment_and_more.py +45 -0
- lamindb/migrations/0062_add_is_latest_field.py +32 -0
- lamindb/migrations/0063_populate_latest_field.py +45 -0
- lamindb/migrations/0064_alter_artifact_version_alter_collection_version_and_more.py +33 -0
- lamindb/migrations/0065_remove_collection_feature_sets_and_more.py +22 -0
- lamindb/migrations/0066_alter_artifact__feature_values_and_more.py +352 -0
- lamindb/migrations/0067_alter_featurevalue_unique_together_and_more.py +20 -0
- lamindb/migrations/0068_alter_artifactulabel_unique_together_and_more.py +20 -0
- lamindb/migrations/0069_alter_artifact__accessor_alter_artifact__hash_type_and_more.py +1294 -0
- lamindb/migrations/0069_squashed.py +1770 -0
- lamindb/migrations/0070_lamindbv1_migrate_data.py +78 -0
- lamindb/migrations/0071_lamindbv1_migrate_schema.py +741 -0
- lamindb/migrations/0072_remove_user__branch_code_remove_user_aux_and_more.py +148 -0
- lamindb/migrations/0073_merge_ourprojects.py +945 -0
- lamindb/migrations/0074_lamindbv1_part4.py +374 -0
- lamindb/migrations/0075_lamindbv1_part5.py +276 -0
- lamindb/migrations/0076_lamindbv1_part6.py +621 -0
- lamindb/migrations/0077_lamindbv1_part6b.py +228 -0
- lamindb/migrations/0078_lamindbv1_part6c.py +468 -0
- lamindb/migrations/0079_alter_rundata_value_json_and_more.py +36 -0
- lamindb/migrations/__init__.py +0 -0
- lamindb/models.py +4064 -0
- {lamindb-0.77.3.dist-info → lamindb-1.0rc1.dist-info}/METADATA +13 -19
- lamindb-1.0rc1.dist-info/RECORD +100 -0
- {lamindb-0.77.3.dist-info → lamindb-1.0rc1.dist-info}/WHEEL +1 -1
- lamindb/core/subsettings/_transform_settings.py +0 -21
- lamindb-0.77.3.dist-info/RECORD +0 -63
- {lamindb-0.77.3.dist-info → lamindb-1.0rc1.dist-info}/LICENSE +0 -0
@@ -1,30 +1,28 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: lamindb
|
3
|
-
Version:
|
3
|
+
Version: 1.0rc1
|
4
4
|
Summary: A data framework for biology.
|
5
5
|
Author-email: Lamin Labs <open-source@lamin.ai>
|
6
|
-
Requires-Python: >=3.
|
6
|
+
Requires-Python: >=3.10,<3.13
|
7
7
|
Description-Content-Type: text/markdown
|
8
|
-
Classifier: Programming Language :: Python :: 3.9
|
9
8
|
Classifier: Programming Language :: Python :: 3.10
|
10
9
|
Classifier: Programming Language :: Python :: 3.11
|
11
10
|
Classifier: Programming Language :: Python :: 3.12
|
12
|
-
Requires-Dist: lnschema_core==0.77.1
|
13
11
|
Requires-Dist: lamin_utils==0.13.10
|
14
|
-
Requires-Dist: lamin_cli==0.
|
15
|
-
Requires-Dist: lamindb_setup==0.
|
12
|
+
Requires-Dist: lamin_cli==1.0.2
|
13
|
+
Requires-Dist: lamindb_setup[aws]==1.0.1
|
16
14
|
Requires-Dist: pyarrow
|
17
15
|
Requires-Dist: typing_extensions!=4.6.0
|
18
16
|
Requires-Dist: python-dateutil
|
17
|
+
Requires-Dist: scipy<1.15.0
|
19
18
|
Requires-Dist: pandas>=2.0.0
|
20
|
-
Requires-Dist: anndata>=0.8.0,<=0.11.
|
19
|
+
Requires-Dist: anndata>=0.8.0,<=0.11.3
|
21
20
|
Requires-Dist: fsspec
|
22
21
|
Requires-Dist: graphviz
|
23
22
|
Requires-Dist: psycopg2-binary
|
24
|
-
Requires-Dist:
|
25
|
-
Requires-Dist: bionty==0.53.2 ; extra == "bionty"
|
23
|
+
Requires-Dist: bionty==1.0.0 ; extra == "bionty"
|
26
24
|
Requires-Dist: cellregistry ; extra == "cellregistry"
|
27
|
-
Requires-Dist: clinicore ; extra == "clinicore"
|
25
|
+
Requires-Dist: clinicore==1.0.0 ; extra == "clinicore"
|
28
26
|
Requires-Dist: line_profiler ; extra == "dev"
|
29
27
|
Requires-Dist: pre-commit ; extra == "dev"
|
30
28
|
Requires-Dist: nox ; extra == "dev"
|
@@ -33,32 +31,28 @@ Requires-Dist: pytest>=6.0 ; extra == "dev"
|
|
33
31
|
Requires-Dist: coverage ; extra == "dev"
|
34
32
|
Requires-Dist: pytest-cov ; extra == "dev"
|
35
33
|
Requires-Dist: mudata ; extra == "dev"
|
36
|
-
Requires-Dist: nbproject_test>=0.
|
34
|
+
Requires-Dist: nbproject_test>=0.6.0 ; extra == "dev"
|
37
35
|
Requires-Dist: faker-biology ; extra == "dev"
|
38
36
|
Requires-Dist: django-schema-graph ; extra == "erdiagram"
|
39
37
|
Requires-Dist: readfcs>=1.1.9 ; extra == "fcs"
|
40
|
-
Requires-Dist: findrefs ; extra == "findrefs"
|
41
38
|
Requires-Dist: lamindb_setup[gcp] ; extra == "gcp"
|
42
39
|
Requires-Dist: nbproject==0.10.5 ; extra == "jupyter"
|
43
40
|
Requires-Dist: jupytext ; extra == "jupyter"
|
44
41
|
Requires-Dist: nbconvert>=7.2.1 ; extra == "jupyter"
|
42
|
+
Requires-Dist: mistune!=3.1.0 ; extra == "jupyter"
|
45
43
|
Requires-Dist: omop ; extra == "omop"
|
46
|
-
Requires-Dist:
|
47
|
-
Requires-Dist:
|
48
|
-
Requires-Dist: zarr>=2.16.0 ; extra == "zarr"
|
44
|
+
Requires-Dist: wetlab==1.0.1 ; extra == "wetlab"
|
45
|
+
Requires-Dist: zarr>=2.16.0,<3.0.0a0 ; extra == "zarr"
|
49
46
|
Project-URL: Home, https://github.com/laminlabs/lamindb
|
50
|
-
Provides-Extra: aws
|
51
47
|
Provides-Extra: bionty
|
52
48
|
Provides-Extra: cellregistry
|
53
49
|
Provides-Extra: clinicore
|
54
50
|
Provides-Extra: dev
|
55
51
|
Provides-Extra: erdiagram
|
56
52
|
Provides-Extra: fcs
|
57
|
-
Provides-Extra: findrefs
|
58
53
|
Provides-Extra: gcp
|
59
54
|
Provides-Extra: jupyter
|
60
55
|
Provides-Extra: omop
|
61
|
-
Provides-Extra: ourprojects
|
62
56
|
Provides-Extra: wetlab
|
63
57
|
Provides-Extra: zarr
|
64
58
|
|
@@ -0,0 +1,100 @@
|
|
1
|
+
lamindb/__init__.py,sha256=P1x45qJ2WHnazlEIYnXbzENZFlbhnkj5uYeUPINJCw8,2256
|
2
|
+
lamindb/_artifact.py,sha256=22pKCA05PoIAgP2xszCHUovZ1VbMGIyrQqNLs5xDG_s,46580
|
3
|
+
lamindb/_can_curate.py,sha256=pIu9Ylgq5biUd_67rRbAHg9tkXSQrxMRM8TnVboL9YA,20341
|
4
|
+
lamindb/_collection.py,sha256=j2yTfR9v-NGUI85JfQk7vOQNExkWE5H_ulsSlBh1AOI,14456
|
5
|
+
lamindb/_feature.py,sha256=qpUZfmdxUpQFLq5GciTn6KgALL19tCs0raHhzJgm7Lo,6311
|
6
|
+
lamindb/_finish.py,sha256=LjeGY9QsC9zbQxMr5K8YCYN-rtlzTqtZQVTtkWHHEp8,12832
|
7
|
+
lamindb/_from_values.py,sha256=uO3IfYzAI8VDDTqlbLzsZtawSYFS-Qzd_ZWwKGhH90o,14231
|
8
|
+
lamindb/_is_versioned.py,sha256=6_LBAKD_fng6BReqitJUIxTUaQok3AeIpNnE_D8kHnQ,1293
|
9
|
+
lamindb/_parents.py,sha256=PA--_ZH3PNqIVW0PpuYk9d4DAVlHUBPN-dN0rFUKUN0,17238
|
10
|
+
lamindb/_query_manager.py,sha256=znUAYeNuUk13YVXq51CllpGr33F15_PW_dQYcok0gO8,3636
|
11
|
+
lamindb/_query_set.py,sha256=Cbh6QaHR2_REx970b4rM95L7TjfVJdPRbUOHKz0qJ7Q,23528
|
12
|
+
lamindb/_record.py,sha256=7JpAOwR2aRVXI9RzrAMovjYDzjI0thQfVwS2tmM4_r4,34003
|
13
|
+
lamindb/_run.py,sha256=Nezhtu4yYBZbFOjAIwFhLEaUNIhNnTt0Hsx8XLG9XsY,1998
|
14
|
+
lamindb/_save.py,sha256=7wI2eINwtxjw67Rk3ZB_LCPbF-ovDZRei6KyMeJO8DQ,11604
|
15
|
+
lamindb/_schema.py,sha256=_bBirtghkQGnOt07IYETlfWWI_gF_ZlosX6xeEWGzCg,8152
|
16
|
+
lamindb/_storage.py,sha256=nxRPHd5W7LicIJf3LF3H1lpFglYoXaRAkwg1F_uovrc,415
|
17
|
+
lamindb/_transform.py,sha256=LYFf8gScJrYLMZJECLYZ5nrW2vLPObdzRP47md-Tq-s,5731
|
18
|
+
lamindb/_ulabel.py,sha256=YTiUCYrcEqyUKD8nZO4iOqiyYnUP5bW_r7yry4KSeWA,2068
|
19
|
+
lamindb/_utils.py,sha256=LGdiW4k3GClLz65vKAVRkL6Tw-Gkx9DWAdez1jyA5bE,428
|
20
|
+
lamindb/_view.py,sha256=c4eN5hcBlg3TVnljKefbyWAq0eBncjMp2xQcb5OaGWg,4982
|
21
|
+
lamindb/models.py,sha256=W3htUmj4R5YJ_bFM8wly57AxR5Ip8JuiAx7mRya9q1o,144513
|
22
|
+
lamindb/base/__init__.py,sha256=J0UpYObi9hJBFyBpAXp4wB3DaJx48R2SaUeB4wjiFvc,267
|
23
|
+
lamindb/base/fields.py,sha256=RdwYHQmB7B-jopD_K2QNL5vjhOelu7DWGgqQItXr3pg,8024
|
24
|
+
lamindb/base/ids.py,sha256=WzHWiHZtlRUKqxz_p-76ks_JSW669ztvriE7Z3A0yHg,1736
|
25
|
+
lamindb/base/types.py,sha256=JfZk0xmhLsWusU0s4SNjhRnQ52mn-cSiG5Gf4SsACBs,1227
|
26
|
+
lamindb/base/users.py,sha256=g4ZLQb6eey66FO9eEumbfDpJi_FZZsiLVe2Frz9JuLI,978
|
27
|
+
lamindb/base/validation.py,sha256=Azz9y2-x0cPum4yULXMG3Yzra03mcVYzcKTiI23HgxE,2287
|
28
|
+
lamindb/core/__init__.py,sha256=4AGZqt5g8k3jFX53IXdezQR4Gf7JmMBLZRyTJJzS4sI,1628
|
29
|
+
lamindb/core/_context.py,sha256=FTeWD-Ku1apAzabPIzs2RU-pXkQk5Wl_vsrL0kph8rI,26461
|
30
|
+
lamindb/core/_data.py,sha256=xg_St591OPCzLhaZAlGxVd8QkDxZsxDc_yEwY8Kop8w,19017
|
31
|
+
lamindb/core/_describe.py,sha256=3Z1xi9eKIBkYuPW9ctdWvFaGZym8mI9FcwyZF3a6YVo,4885
|
32
|
+
lamindb/core/_django.py,sha256=vPY4wJ4bf3a1uz5bhukCCF_mngR_9w2Ot3nvWZpa204,7629
|
33
|
+
lamindb/core/_feature_manager.py,sha256=Omx9t2LYfiTSBf1wOAd9PP-vkWFTyRlKETXqRc3Cdqc,48003
|
34
|
+
lamindb/core/_label_manager.py,sha256=OKMXpEM5FVhzGm-PU3-jQ1ZcQI_gCTgP5X1Vvhs9XF4,11876
|
35
|
+
lamindb/core/_mapped_collection.py,sha256=btDGl8V3Vi_MDy-9vIi40p8ejL2Kb0dO4rhdCiNWpxc,24870
|
36
|
+
lamindb/core/_settings.py,sha256=haLHE1dhog_Sz6gnecTW8E548njWH5nVt8mTFPEs6ZM,5733
|
37
|
+
lamindb/core/_sync_git.py,sha256=xu1o6zlBD_pTRpBPVXiHKOI2tmtGaUfXvuuII2AAfM4,5875
|
38
|
+
lamindb/core/_track_environment.py,sha256=nVEO98P7ZrUWyixMI3AdoD7vcUszIVciZwgPOsQUsNU,814
|
39
|
+
lamindb/core/exceptions.py,sha256=QnvqzMPIHrjaVnyqCBXtut3Jy5LYtV1GBNjGO7MISHY,1691
|
40
|
+
lamindb/core/fields.py,sha256=zM6G7CiE6mU_5heLWwIhE3d5LqAjPCEwgs0eechFm0c,175
|
41
|
+
lamindb/core/loaders.py,sha256=7WnEgoklcMtU87SLDaxpLaFQ2U5jz20DAh9aJnpLhD0,4759
|
42
|
+
lamindb/core/relations.py,sha256=NLr2s4xreh4_93UyoV57QNyTBi-swokQyRcotZzTqAI,3428
|
43
|
+
lamindb/core/types.py,sha256=DS4uXaCswAW9tqz4MZ_sYc1_QZ6il--Z4x8HeHNQgRw,162
|
44
|
+
lamindb/core/versioning.py,sha256=tUZthgDwbz7UBx1wx_MsdsXXsltE1E9clapmRkmvKlU,4953
|
45
|
+
lamindb/core/datasets/__init__.py,sha256=XE_JAiEMMaBkP3ChLQD36Lzpze0Z08_sHgjXF1Joyuk,1675
|
46
|
+
lamindb/core/datasets/_core.py,sha256=-f5RDsMaRdTLlc3rmYrkviO58HTRfo3GZqdPABiIr1g,19462
|
47
|
+
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
48
|
+
lamindb/core/datasets/_small.py,sha256=2ttgHe_L-NkFc9sKFbLRkKfpG09YI_PpH9jdXMFYuYg,3221
|
49
|
+
lamindb/core/storage/__init__.py,sha256=JOIMu_7unbyhndtH1j0Q-9AvY8knSuc1IJO9sQnyBAQ,498
|
50
|
+
lamindb/core/storage/_anndata_accessor.py,sha256=lVCy7as7hBj3i4RVapeaBWpZqlaBjxZ0uD240_cQz1c,24377
|
51
|
+
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
52
|
+
lamindb/core/storage/_backed_access.py,sha256=HvIOaiJr4eEdXGJyMqaeDqmCJGdfwHvqJeWZMnGk4Bg,3519
|
53
|
+
lamindb/core/storage/_pyarrow_dataset.py,sha256=wuLsEvdblqMdUdDfMtis8AWrE3igzvFWTSTbxuD1Oc8,926
|
54
|
+
lamindb/core/storage/_tiledbsoma.py,sha256=g3qNISsNfrxypU36vqFB-QBYuCpsmBLMKWYVlXloWiY,8438
|
55
|
+
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
56
|
+
lamindb/core/storage/_zarr.py,sha256=sVd9jVt2q91maeL6GAqMhT6sqtD04vQRfxY3mvIUQlc,3854
|
57
|
+
lamindb/core/storage/objects.py,sha256=5vM2T_upuzrXt2b7fQeQ2FUO710-FRbubxTzKzV2ECU,1812
|
58
|
+
lamindb/core/storage/paths.py,sha256=XXEy51qCw0z497y6ZEN_SULY3oXtA4XlanHo-TGK7jY,6302
|
59
|
+
lamindb/core/subsettings/__init__.py,sha256=j6G9WAJLK-x9FzPSFw-HJUmOseZKGTbK-oLTKI_X_zs,126
|
60
|
+
lamindb/core/subsettings/_creation_settings.py,sha256=54mfMH_osC753hpxcl7Dq1rwBD2LHnWveXtQpkLBITE,1194
|
61
|
+
lamindb/curators/__init__.py,sha256=BVdmWVTC2wZq_mduxxhT-2z9uNKDEycNK-fbYSrIsrU,92475
|
62
|
+
lamindb/curators/_spatial.py,sha256=JgveK3aC1kFEplumEwU4Yyj-2tgHGfSAO52lHniJq5s,21212
|
63
|
+
lamindb/integrations/__init__.py,sha256=RWGMYYIzr8zvmNPyVB4m-p4gMDhxdRbjES2Ed23OItw,215
|
64
|
+
lamindb/integrations/_vitessce.py,sha256=nbfOsEO-W4f0BVnpFBDaA45577cfdvQehVx1hAUP544,3978
|
65
|
+
lamindb/migrations/0052_squashed.py,sha256=sEx8AsVAmiucNxMqeoa8MCPc2MtNMZoDYK_x8D_ocIs,45970
|
66
|
+
lamindb/migrations/0053_alter_featureset_hash_alter_paramvalue_created_by_and_more.py,sha256=xW9m7uvxVJsKVLTLYfU6O3Q8aPkgAwJSknY4-ybXbnk,1734
|
67
|
+
lamindb/migrations/0054_alter_feature_previous_runs_and_more.py,sha256=4b9J9Xlvb8I0QQu_2OycXrGSsUN-lBdBVoVDDReAEO8,1054
|
68
|
+
lamindb/migrations/0055_artifact_type_artifactparamvalue_and_more.py,sha256=lz9J79A_3d3NplCUp246_kPywGPpNkEmmqf2QgBcZvQ,1904
|
69
|
+
lamindb/migrations/0056_rename_ulabel_ref_is_name_artifactulabel_label_ref_is_name_and_more.py,sha256=-fExdgPPz34SshruSmrdWbmtbG3bEsjKXkvBomLx0Ug,585
|
70
|
+
lamindb/migrations/0057_link_models_latest_report_and_others.py,sha256=gSKHICQfmU45qepVEW_xmkddSDFFd_EtXKBdYFtQUlU,11371
|
71
|
+
lamindb/migrations/0058_artifact__actions_collection__actions.py,sha256=tEZTu5nYtAj-KEUaHGyZqHAH8oRDPNQKd7Sdrufc-WM,624
|
72
|
+
lamindb/migrations/0059_alter_artifact__accessor_alter_artifact__hash_type_and_more.py,sha256=ywAlvtu1n7R2igTbL5yZgeE4ogShsYSIwv3tWImTFS0,860
|
73
|
+
lamindb/migrations/0060_alter_artifact__actions.py,sha256=DAXOpBObjADuIGu_nC8X3cokEJ_itDW3_pFC9FbRE-Y,539
|
74
|
+
lamindb/migrations/0061_alter_collection_meta_artifact_alter_run_environment_and_more.py,sha256=cz4brVH1tnZjCYb8dEStujjnSn86nyb5Q_7nCowYCqU,1327
|
75
|
+
lamindb/migrations/0062_add_is_latest_field.py,sha256=B32_262qaH3bBkQ1qWrIgjrCG0-xpLLsvwzw0Rbq8Z4,923
|
76
|
+
lamindb/migrations/0063_populate_latest_field.py,sha256=VM3xX6NC_lWF6vmEsaIkqVx48u3tBnt0DHJsutBjuCg,1134
|
77
|
+
lamindb/migrations/0064_alter_artifact_version_alter_collection_version_and_more.py,sha256=FqNtpM-H4hzJ3_HhKGad3HTGJepxyBvqjDxUcxJylOE,914
|
78
|
+
lamindb/migrations/0065_remove_collection_feature_sets_and_more.py,sha256=5Gckmxyo8eVM3LZG88z16oM-ISw5zPTZG-uc7dubX2Y,492
|
79
|
+
lamindb/migrations/0066_alter_artifact__feature_values_and_more.py,sha256=HLTG25Hr6DFyddv0x3CRTZA9Yz9g0BWt6gQcgCcJjLs,11896
|
80
|
+
lamindb/migrations/0067_alter_featurevalue_unique_together_and_more.py,sha256=AsCwHPQ4qIlWyQoFSsbNcQyzEOcngbVnJHHzdzRS9XI,481
|
81
|
+
lamindb/migrations/0068_alter_artifactulabel_unique_together_and_more.py,sha256=TfvHyJN70tb64PUNHPeRLgwYGV7KCTxHiNPoUJd7v0s,546
|
82
|
+
lamindb/migrations/0069_alter_artifact__accessor_alter_artifact__hash_type_and_more.py,sha256=ZloarUL3htjr6TTbE0U4_Hi87CxldLKA5t4RSb5qQec,45388
|
83
|
+
lamindb/migrations/0069_squashed.py,sha256=KE2U6AX4wOh3ONMAN9INzZOvVA6b06pNsqMzDGYQgXU,62470
|
84
|
+
lamindb/migrations/0070_lamindbv1_migrate_data.py,sha256=tyq_xi6U8TXi9C2Raf6v_UTtfyfqQOUIFJzYj4oCgAE,2429
|
85
|
+
lamindb/migrations/0071_lamindbv1_migrate_schema.py,sha256=r3PPpq4RK7rhrLWjhVACd5i-tSUTBF0X6Luc5v-g0Lg,25125
|
86
|
+
lamindb/migrations/0072_remove_user__branch_code_remove_user_aux_and_more.py,sha256=Nek9Mkuop3LgjAuW3moY-dyPXroCFq8UyvCAAWEquCM,4443
|
87
|
+
lamindb/migrations/0073_merge_ourprojects.py,sha256=_B_A9qhRz4VhPWmJhMyWNhMEM13OR7tTF4HapaSePag,34829
|
88
|
+
lamindb/migrations/0074_lamindbv1_part4.py,sha256=NqYjEAmm2bNuK42ufLaJZDBjCjAJNv-N9pEXK7iCfyA,11557
|
89
|
+
lamindb/migrations/0075_lamindbv1_part5.py,sha256=XmwkuR4lFuTgHFAVRtvw91oI6Iq4JZTI57CplWcIl0o,8973
|
90
|
+
lamindb/migrations/0076_lamindbv1_part6.py,sha256=G_Wgog-OgquE0-h_CykjiDWUyPdYlCwA8gXjeuBY2OM,21349
|
91
|
+
lamindb/migrations/0077_lamindbv1_part6b.py,sha256=v7k8OZX9o5ppSJU_yhHlIXGTobTm30bo1dAIi8tUkEI,8211
|
92
|
+
lamindb/migrations/0078_lamindbv1_part6c.py,sha256=RWRXBwyyQ_rFTN5kwstBziV6tqHJcGYI2vsFmuYCCz0,17084
|
93
|
+
lamindb/migrations/0079_alter_rundata_value_json_and_more.py,sha256=yQmbs8yWrFLOVQJqAfzLNMZOqTSnXyG-mQgpO7ls1u8,995
|
94
|
+
lamindb/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
+
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
96
|
+
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
97
|
+
lamindb-1.0rc1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
98
|
+
lamindb-1.0rc1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
99
|
+
lamindb-1.0rc1.dist-info/METADATA,sha256=KruwSQuWkFFH25giTshT8EvPEUjw9jO5wYiee9QZToI,2612
|
100
|
+
lamindb-1.0rc1.dist-info/RECORD,,
|
@@ -1,21 +0,0 @@
|
|
1
|
-
from __future__ import annotations
|
2
|
-
|
3
|
-
|
4
|
-
class TransformSettings:
|
5
|
-
stem_uid: str | None = None
|
6
|
-
"""Defines the version family of the transform.
|
7
|
-
|
8
|
-
For example, all notebooks of the same family have a uid that starts with
|
9
|
-
`"FPnfDtJz8qbE"`.
|
10
|
-
|
11
|
-
The full uids of the notebooks in this family are of form
|
12
|
-
`"{stem_uid}{suffix_uid}"` where the `suffix_uid` encodes the semantic
|
13
|
-
`version`.
|
14
|
-
"""
|
15
|
-
version: str | None = None
|
16
|
-
"""The version."""
|
17
|
-
name: str | None = None
|
18
|
-
"""A name like a notebook or script title."""
|
19
|
-
|
20
|
-
|
21
|
-
transform_settings = TransformSettings()
|
lamindb-0.77.3.dist-info/RECORD
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
lamindb/__init__.py,sha256=1av5TS9CY2jVzCnS65TWUDPbMnjYO5o4mrURJPs_Fc0,2275
|
2
|
-
lamindb/_artifact.py,sha256=ybwOZAQ0q9IuGumiuw_T_Pysb1hGLtxrtUw0fYHQas4,45347
|
3
|
-
lamindb/_can_curate.py,sha256=v8Hdr_xT1oUdpkryFsk90JmFLcsEVcIhzEMUtPUpDCE,20025
|
4
|
-
lamindb/_collection.py,sha256=5QPAy0yo1hv46B5tpZWOWfOVrWyScyQvI-auQ36oPhw,14590
|
5
|
-
lamindb/_curate.py,sha256=kMQGAE9eLwHXXkR5yq6lgB2eo3kqleDwOBvvfNGuXjg,88355
|
6
|
-
lamindb/_feature.py,sha256=rCmDBTOxjjngoAX_HzBXae2IrAIZ9m7VY4ha-v6YMcU,6361
|
7
|
-
lamindb/_feature_set.py,sha256=vQPREBPpVIVfDoEZYeQci6KR0vG-VGPgZpq7Xw626J8,8194
|
8
|
-
lamindb/_finish.py,sha256=8KZqkqm1UKaVAMpJjMQTwPTRpr9bZQ21Kw8ndWdY0Tc,12058
|
9
|
-
lamindb/_from_values.py,sha256=QIK0bs8tvf3pah_cJ7siUeOo0Zb1q7HBSodHpaNQSeo,14197
|
10
|
-
lamindb/_is_versioned.py,sha256=GWZk-usV6aB33Cl9AlrnEGE5nxUkZic7QJzOW_DrwQA,1298
|
11
|
-
lamindb/_parents.py,sha256=GTbDL4P9LnaoNXMe6uOrp4g_Q4ZUAEaW0tHULrBt8tU,17203
|
12
|
-
lamindb/_query_manager.py,sha256=noc05Ad-aADxckOVBVDAiErFB7gL8XTgckELvI4rGmM,3702
|
13
|
-
lamindb/_query_set.py,sha256=uJA3uNHb3pDHhPhQa340UxLT8NF1-szgkIlG1sZY8yI,21338
|
14
|
-
lamindb/_record.py,sha256=epuRwfKS8Z7KswEwQpQSpT0OG7hbZC0tlJKK6ftikLY,31656
|
15
|
-
lamindb/_run.py,sha256=K_5drpLn3D7y3XtZ3vtAw35rG5RCSvB4bXQZx4ESSI0,1964
|
16
|
-
lamindb/_save.py,sha256=SrnkkSTxduegEzQu6vsTRwEZwFGkFuRvAIwgDSzxnTg,11672
|
17
|
-
lamindb/_storage.py,sha256=GBVChv-DHVMNEBJL5l_JT6B4RDhZ6NnwgzmUICphYKk,413
|
18
|
-
lamindb/_transform.py,sha256=HpqRCk0ZTmqxSV4nRbyvDq8fAQEE9wTj31d-CusiL6A,4720
|
19
|
-
lamindb/_ulabel.py,sha256=DQQzAPkrOg8W9I77BJ5umajR8MQcFSvXYUy53YNN2HA,1604
|
20
|
-
lamindb/_utils.py,sha256=LGdiW4k3GClLz65vKAVRkL6Tw-Gkx9DWAdez1jyA5bE,428
|
21
|
-
lamindb/_view.py,sha256=bbUvkkj9FT_IMdYL4_2hE0SUs08c8elGyopBqggv6VU,4974
|
22
|
-
lamindb/core/__init__.py,sha256=lXjC-oynCkA1qBOeutJA62BgyqwAOJB3LtqUtyjPsUQ,1588
|
23
|
-
lamindb/core/_context.py,sha256=6vkZKW9ABhbUscDLoidXh2Wb0IUQApdIjQUfopLoKfg,23866
|
24
|
-
lamindb/core/_data.py,sha256=PUnbgSsrpdeHJg8Cz5ye9eOcpLEpoerCCruiQb76LZE,19145
|
25
|
-
lamindb/core/_describe.py,sha256=rNFpe5NeID1cWD3Y0u6zKnU1kbNZ8WB6yG3xDs99_1k,4536
|
26
|
-
lamindb/core/_django.py,sha256=cXJsck6ow0YHO5EICK9fw0iPds7xA16pXV9EQ726-JY,7609
|
27
|
-
lamindb/core/_feature_manager.py,sha256=NsAL9ArRJp6akkfqoiQ4iY_zq9FtJqteqN9SyotcZAo,48233
|
28
|
-
lamindb/core/_label_manager.py,sha256=oeJ9he6ogSjA-CguLT3hX7x67ofbTksSwDESiSn5yOs,11886
|
29
|
-
lamindb/core/_mapped_collection.py,sha256=EDS0xzOdCc_iGE_Iqv5COTVHNm4jWue7Jtcd8DdXkJU,24591
|
30
|
-
lamindb/core/_settings.py,sha256=6jNadlQdimxCsKR2ZyUD0YJYzOdubTnKktki-MqEWqQ,6137
|
31
|
-
lamindb/core/_sync_git.py,sha256=lIgl6YfpH4rCFT1WILAp7zlemZfxog1d0zp3cX0KIZw,4531
|
32
|
-
lamindb/core/_track_environment.py,sha256=Ywzg_sJ7guI1dcsN7h5orce9VdYl8VGVE3OLITlHBXQ,820
|
33
|
-
lamindb/core/exceptions.py,sha256=d9cXiuvYzeR5fMc8H8OmtWA7kBkJQGkOpNt192QdAcw,1784
|
34
|
-
lamindb/core/fields.py,sha256=47Jmh3efUr5ZscgimR_yckY-I3cNf8ScLutbwKCK3j4,162
|
35
|
-
lamindb/core/loaders.py,sha256=yAgLHBjWcHUJ0xCN4WBhxWHO0Lx0RbVZmfcKRZSi2uU,4783
|
36
|
-
lamindb/core/schema.py,sha256=Y1tGn93B236PtnYZkpgTNFgTXBcVujPM1qh1kNG6Nbs,3441
|
37
|
-
lamindb/core/types.py,sha256=WKTfDU9rGaMeP1f6q_S1wHHiJfuGNJnWXndvMjFNyNA,385
|
38
|
-
lamindb/core/versioning.py,sha256=KUpd94F5QpbDxx9eKgZwrpPyQpm9YeHVedrTEO2a_mI,4839
|
39
|
-
lamindb/core/datasets/__init__.py,sha256=XE_JAiEMMaBkP3ChLQD36Lzpze0Z08_sHgjXF1Joyuk,1675
|
40
|
-
lamindb/core/datasets/_core.py,sha256=GTuW-hmS5w4tMVfoHCnDbsyN6QsDp7Dxnv_N2lJYcB0,19493
|
41
|
-
lamindb/core/datasets/_fake.py,sha256=BZF9R_1iF0HDnvtZNqL2FtsjSMuqDIfuFxnw_LJYIh4,953
|
42
|
-
lamindb/core/datasets/_small.py,sha256=2ttgHe_L-NkFc9sKFbLRkKfpG09YI_PpH9jdXMFYuYg,3221
|
43
|
-
lamindb/core/storage/__init__.py,sha256=JOIMu_7unbyhndtH1j0Q-9AvY8knSuc1IJO9sQnyBAQ,498
|
44
|
-
lamindb/core/storage/_anndata_accessor.py,sha256=C321qng00vMmugukxv5dX8z3oJeRxq869DgAGaEd5rg,24413
|
45
|
-
lamindb/core/storage/_anndata_sizes.py,sha256=aXO3OB--tF5MChenSsigW6Q-RuE8YJJOUTVukkLrv9A,1029
|
46
|
-
lamindb/core/storage/_backed_access.py,sha256=t9iS9mlZQBy1FfIS-Twt-96npYiShbPwEo2y9_3b6jY,3517
|
47
|
-
lamindb/core/storage/_pyarrow_dataset.py,sha256=wuLsEvdblqMdUdDfMtis8AWrE3igzvFWTSTbxuD1Oc8,926
|
48
|
-
lamindb/core/storage/_tiledbsoma.py,sha256=srTVJLey_PY5STSUszH3fFbooGIG0I6yJ2H75ibrRLA,7369
|
49
|
-
lamindb/core/storage/_valid_suffixes.py,sha256=vUSeQ4s01rdhD_vSd6wKmFBsgMJAKkBMnL_T9Y1znMg,501
|
50
|
-
lamindb/core/storage/_zarr.py,sha256=sVd9jVt2q91maeL6GAqMhT6sqtD04vQRfxY3mvIUQlc,3854
|
51
|
-
lamindb/core/storage/objects.py,sha256=OzvBCS-Urz5mr-O95qYt6RGBDDX5HmjfRRKWPPDn1ZE,1797
|
52
|
-
lamindb/core/storage/paths.py,sha256=XXhExsJffh1Ta15eBbOd3ZjVXGNb9sjjnXiBieP_27Q,6101
|
53
|
-
lamindb/core/subsettings/__init__.py,sha256=KFHPzIE7f7Bj4RgMjGQF4CjTdHVG_VNFBrCndo49ixo,198
|
54
|
-
lamindb/core/subsettings/_creation_settings.py,sha256=54mfMH_osC753hpxcl7Dq1rwBD2LHnWveXtQpkLBITE,1194
|
55
|
-
lamindb/core/subsettings/_transform_settings.py,sha256=4YbCuZtJo6zdytl6UQR4GvdDkTtT6SRBqVzofGzNOt8,583
|
56
|
-
lamindb/integrations/__init__.py,sha256=RWGMYYIzr8zvmNPyVB4m-p4gMDhxdRbjES2Ed23OItw,215
|
57
|
-
lamindb/integrations/_vitessce.py,sha256=uPl45_w4Uu9_BhpBDDVonC1nDOuAnB7DAnzi5w5bZAE,4032
|
58
|
-
lamindb/setup/__init__.py,sha256=OwZpZzPDv5lPPGXZP7-zK6UdO4FHvvuBh439yZvIp3A,410
|
59
|
-
lamindb/setup/core/__init__.py,sha256=SevlVrc2AZWL3uALbE5sopxBnIZPWZ1IB0NBDudiAL8,167
|
60
|
-
lamindb-0.77.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
61
|
-
lamindb-0.77.3.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
62
|
-
lamindb-0.77.3.dist-info/METADATA,sha256=KEfGgLi_6tLK-AeI6d7Kwz8lr3YHc2e_vnWr219aWqU,2816
|
63
|
-
lamindb-0.77.3.dist-info/RECORD,,
|
File without changes
|