@vitessce/constants-internal 3.4.12 → 3.4.14
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.
- package/dist/index.js +14 -3
- package/dist-tsc/constant-relationships.d.ts +3 -0
- package/dist-tsc/constant-relationships.d.ts.map +1 -1
- package/dist-tsc/constant-relationships.js +8 -0
- package/dist-tsc/constants.d.ts +2 -0
- package/dist-tsc/constants.d.ts.map +1 -1
- package/dist-tsc/constants.js +3 -0
- package/dist-tsc/version.json +3 -3
- package/package.json +1 -1
- package/src/constant-relationships.ts +8 -0
- package/src/constants.ts +3 -0
- package/src/version.json +3 -3
package/dist/index.js
CHANGED
|
@@ -54,6 +54,9 @@ const FileType = {
|
|
|
54
54
|
// OME-Zarr
|
|
55
55
|
IMAGE_OME_ZARR: "image.ome-zarr",
|
|
56
56
|
OBS_SEGMENTATIONS_OME_ZARR: "obsSegmentations.ome-zarr",
|
|
57
|
+
// OME-Zarr - Zipped
|
|
58
|
+
IMAGE_OME_ZARR_ZIP: "image.ome-zarr.zip",
|
|
59
|
+
OBS_SEGMENTATIONS_OME_ZARR_ZIP: "obsSegmentations.ome-zarr.zip",
|
|
57
60
|
// AnnData
|
|
58
61
|
OBS_FEATURE_MATRIX_ANNDATA_ZARR: "obsFeatureMatrix.anndata.zarr",
|
|
59
62
|
OBS_FEATURE_COLUMNS_ANNDATA_ZARR: "obsFeatureColumns.anndata.zarr",
|
|
@@ -410,6 +413,7 @@ const DATA_TYPE_COORDINATION_VALUE_USAGE = {
|
|
|
410
413
|
]
|
|
411
414
|
};
|
|
412
415
|
const ALT_ZARR_STORE_TYPES = {
|
|
416
|
+
// For AnnData:
|
|
413
417
|
[FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR]: {
|
|
414
418
|
zip: FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR_ZIP,
|
|
415
419
|
h5ad: FileType.OBS_FEATURE_MATRIX_ANNDATA_H5AD
|
|
@@ -453,6 +457,13 @@ const ALT_ZARR_STORE_TYPES = {
|
|
|
453
457
|
[FileType.SAMPLE_EDGES_ANNDATA_ZARR]: {
|
|
454
458
|
zip: FileType.SAMPLE_EDGES_ANNDATA_ZARR_ZIP,
|
|
455
459
|
h5ad: FileType.SAMPLE_EDGES_ANNDATA_H5AD
|
|
460
|
+
},
|
|
461
|
+
// For OME-Zarr:
|
|
462
|
+
[FileType.IMAGE_OME_ZARR]: {
|
|
463
|
+
zip: FileType.IMAGE_OME_ZARR_ZIP
|
|
464
|
+
},
|
|
465
|
+
[FileType.OBS_SEGMENTATIONS_OME_ZARR]: {
|
|
466
|
+
zip: FileType.OBS_SEGMENTATIONS_OME_ZARR_ZIP
|
|
456
467
|
}
|
|
457
468
|
};
|
|
458
469
|
const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
@@ -888,10 +899,10 @@ const COMPONENT_COORDINATION_TYPES = {
|
|
|
888
899
|
]
|
|
889
900
|
};
|
|
890
901
|
const note = "This file is autogenerated by .changeset/post-changelog.mjs.";
|
|
891
|
-
const version = "3.4.
|
|
892
|
-
const date = "2024-10-
|
|
902
|
+
const version = "3.4.14";
|
|
903
|
+
const date = "2024-10-07";
|
|
893
904
|
const branch = "changeset-release/main";
|
|
894
|
-
const hash = "
|
|
905
|
+
const hash = "f416e01c";
|
|
895
906
|
const version$1 = {
|
|
896
907
|
note,
|
|
897
908
|
version,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constant-relationships.d.ts","sourceRoot":"","sources":["../src/constant-relationships.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,2BAA2B;;CA+DvC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,kCAAkC;;CA6C9C,CAAC;AAKF,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"constant-relationships.d.ts","sourceRoot":"","sources":["../src/constant-relationships.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,eAAO,MAAM,2BAA2B;;CA+DvC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,kCAAkC;;CA6C9C,CAAC;AAKF,eAAO,MAAM,oBAAoB;;;;;;;;CAqDhC,CAAC"}
|
|
@@ -121,6 +121,7 @@ export const DATA_TYPE_COORDINATION_VALUE_USAGE = {
|
|
|
121
121
|
// corresponding to alternative store implementations,
|
|
122
122
|
// to avoid having to rely on file extensions.
|
|
123
123
|
export const ALT_ZARR_STORE_TYPES = {
|
|
124
|
+
// For AnnData:
|
|
124
125
|
[FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR]: {
|
|
125
126
|
zip: FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR_ZIP,
|
|
126
127
|
h5ad: FileType.OBS_FEATURE_MATRIX_ANNDATA_H5AD,
|
|
@@ -165,4 +166,11 @@ export const ALT_ZARR_STORE_TYPES = {
|
|
|
165
166
|
zip: FileType.SAMPLE_EDGES_ANNDATA_ZARR_ZIP,
|
|
166
167
|
h5ad: FileType.SAMPLE_EDGES_ANNDATA_H5AD,
|
|
167
168
|
},
|
|
169
|
+
// For OME-Zarr:
|
|
170
|
+
[FileType.IMAGE_OME_ZARR]: {
|
|
171
|
+
zip: FileType.IMAGE_OME_ZARR_ZIP,
|
|
172
|
+
},
|
|
173
|
+
[FileType.OBS_SEGMENTATIONS_OME_ZARR]: {
|
|
174
|
+
zip: FileType.OBS_SEGMENTATIONS_OME_ZARR_ZIP,
|
|
175
|
+
},
|
|
168
176
|
};
|
package/dist-tsc/constants.d.ts
CHANGED
|
@@ -63,6 +63,8 @@ export declare const FileType: {
|
|
|
63
63
|
SAMPLE_SETS_CSV: string;
|
|
64
64
|
IMAGE_OME_ZARR: string;
|
|
65
65
|
OBS_SEGMENTATIONS_OME_ZARR: string;
|
|
66
|
+
IMAGE_OME_ZARR_ZIP: string;
|
|
67
|
+
OBS_SEGMENTATIONS_OME_ZARR_ZIP: string;
|
|
66
68
|
OBS_FEATURE_MATRIX_ANNDATA_ZARR: string;
|
|
67
69
|
OBS_FEATURE_COLUMNS_ANNDATA_ZARR: string;
|
|
68
70
|
OBS_SETS_ANNDATA_ZARR: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;CAkBpB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;CAepB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;CAM7B,CAAC;AAGF,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;CAkBpB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;CAepB,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;CAM7B,CAAC;AAGF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwHpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsH5B,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,eAAe;;;CAG3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;CAgB3B,CAAC"}
|
package/dist-tsc/constants.js
CHANGED
|
@@ -66,6 +66,9 @@ export const FileType = {
|
|
|
66
66
|
// OME-Zarr
|
|
67
67
|
IMAGE_OME_ZARR: 'image.ome-zarr',
|
|
68
68
|
OBS_SEGMENTATIONS_OME_ZARR: 'obsSegmentations.ome-zarr',
|
|
69
|
+
// OME-Zarr - Zipped
|
|
70
|
+
IMAGE_OME_ZARR_ZIP: 'image.ome-zarr.zip',
|
|
71
|
+
OBS_SEGMENTATIONS_OME_ZARR_ZIP: 'obsSegmentations.ome-zarr.zip',
|
|
69
72
|
// AnnData
|
|
70
73
|
OBS_FEATURE_MATRIX_ANNDATA_ZARR: 'obsFeatureMatrix.anndata.zarr',
|
|
71
74
|
OBS_FEATURE_COLUMNS_ANNDATA_ZARR: 'obsFeatureColumns.anndata.zarr',
|
package/dist-tsc/version.json
CHANGED
package/package.json
CHANGED
|
@@ -126,6 +126,7 @@ export const DATA_TYPE_COORDINATION_VALUE_USAGE = {
|
|
|
126
126
|
// corresponding to alternative store implementations,
|
|
127
127
|
// to avoid having to rely on file extensions.
|
|
128
128
|
export const ALT_ZARR_STORE_TYPES = {
|
|
129
|
+
// For AnnData:
|
|
129
130
|
[FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR]: {
|
|
130
131
|
zip: FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR_ZIP,
|
|
131
132
|
h5ad: FileType.OBS_FEATURE_MATRIX_ANNDATA_H5AD,
|
|
@@ -170,4 +171,11 @@ export const ALT_ZARR_STORE_TYPES = {
|
|
|
170
171
|
zip: FileType.SAMPLE_EDGES_ANNDATA_ZARR_ZIP,
|
|
171
172
|
h5ad: FileType.SAMPLE_EDGES_ANNDATA_H5AD,
|
|
172
173
|
},
|
|
174
|
+
// For OME-Zarr:
|
|
175
|
+
[FileType.IMAGE_OME_ZARR]: {
|
|
176
|
+
zip: FileType.IMAGE_OME_ZARR_ZIP,
|
|
177
|
+
},
|
|
178
|
+
[FileType.OBS_SEGMENTATIONS_OME_ZARR]: {
|
|
179
|
+
zip: FileType.OBS_SEGMENTATIONS_OME_ZARR_ZIP,
|
|
180
|
+
},
|
|
173
181
|
};
|
package/src/constants.ts
CHANGED
|
@@ -70,6 +70,9 @@ export const FileType = {
|
|
|
70
70
|
// OME-Zarr
|
|
71
71
|
IMAGE_OME_ZARR: 'image.ome-zarr',
|
|
72
72
|
OBS_SEGMENTATIONS_OME_ZARR: 'obsSegmentations.ome-zarr',
|
|
73
|
+
// OME-Zarr - Zipped
|
|
74
|
+
IMAGE_OME_ZARR_ZIP: 'image.ome-zarr.zip',
|
|
75
|
+
OBS_SEGMENTATIONS_OME_ZARR_ZIP: 'obsSegmentations.ome-zarr.zip',
|
|
73
76
|
// AnnData
|
|
74
77
|
OBS_FEATURE_MATRIX_ANNDATA_ZARR: 'obsFeatureMatrix.anndata.zarr',
|
|
75
78
|
OBS_FEATURE_COLUMNS_ANNDATA_ZARR: 'obsFeatureColumns.anndata.zarr',
|
package/src/version.json
CHANGED