@vitessce/constants-internal 3.4.11 → 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 +15 -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 +3 -0
- package/dist-tsc/constants.d.ts.map +1 -1
- package/dist-tsc/constants.js +4 -0
- package/dist-tsc/version.json +3 -3
- package/package.json +1 -1
- package/src/constant-relationships.ts +8 -0
- package/src/constants.ts +4 -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",
|
|
@@ -160,6 +163,7 @@ const CoordinationType = {
|
|
|
160
163
|
FEATURE_TYPE: "featureType",
|
|
161
164
|
FEATURE_VALUE_TYPE: "featureValueType",
|
|
162
165
|
OBS_LABELS_TYPE: "obsLabelsType",
|
|
166
|
+
FEATURE_LABELS_TYPE: "featureLabelsType",
|
|
163
167
|
// Other types
|
|
164
168
|
EMBEDDING_TYPE: "embeddingType",
|
|
165
169
|
EMBEDDING_ZOOM: "embeddingZoom",
|
|
@@ -409,6 +413,7 @@ const DATA_TYPE_COORDINATION_VALUE_USAGE = {
|
|
|
409
413
|
]
|
|
410
414
|
};
|
|
411
415
|
const ALT_ZARR_STORE_TYPES = {
|
|
416
|
+
// For AnnData:
|
|
412
417
|
[FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR]: {
|
|
413
418
|
zip: FileType.OBS_FEATURE_MATRIX_ANNDATA_ZARR_ZIP,
|
|
414
419
|
h5ad: FileType.OBS_FEATURE_MATRIX_ANNDATA_H5AD
|
|
@@ -452,6 +457,13 @@ const ALT_ZARR_STORE_TYPES = {
|
|
|
452
457
|
[FileType.SAMPLE_EDGES_ANNDATA_ZARR]: {
|
|
453
458
|
zip: FileType.SAMPLE_EDGES_ANNDATA_ZARR_ZIP,
|
|
454
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
|
|
455
467
|
}
|
|
456
468
|
};
|
|
457
469
|
const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
@@ -887,10 +899,10 @@ const COMPONENT_COORDINATION_TYPES = {
|
|
|
887
899
|
]
|
|
888
900
|
};
|
|
889
901
|
const note = "This file is autogenerated by .changeset/post-changelog.mjs.";
|
|
890
|
-
const version = "3.4.
|
|
891
|
-
const date = "2024-
|
|
902
|
+
const version = "3.4.14";
|
|
903
|
+
const date = "2024-10-07";
|
|
892
904
|
const branch = "changeset-release/main";
|
|
893
|
-
const hash = "
|
|
905
|
+
const hash = "f416e01c";
|
|
894
906
|
const version$1 = {
|
|
895
907
|
note,
|
|
896
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;
|
|
@@ -153,6 +155,7 @@ export declare const CoordinationType: {
|
|
|
153
155
|
FEATURE_TYPE: string;
|
|
154
156
|
FEATURE_VALUE_TYPE: string;
|
|
155
157
|
OBS_LABELS_TYPE: string;
|
|
158
|
+
FEATURE_LABELS_TYPE: string;
|
|
156
159
|
EMBEDDING_TYPE: string;
|
|
157
160
|
EMBEDDING_ZOOM: string;
|
|
158
161
|
EMBEDDING_ROTATION: 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',
|
|
@@ -176,6 +179,7 @@ export const CoordinationType = {
|
|
|
176
179
|
FEATURE_TYPE: 'featureType',
|
|
177
180
|
FEATURE_VALUE_TYPE: 'featureValueType',
|
|
178
181
|
OBS_LABELS_TYPE: 'obsLabelsType',
|
|
182
|
+
FEATURE_LABELS_TYPE: 'featureLabelsType',
|
|
179
183
|
// Other types
|
|
180
184
|
EMBEDDING_TYPE: 'embeddingType',
|
|
181
185
|
EMBEDDING_ZOOM: 'embeddingZoom',
|
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',
|
|
@@ -181,6 +184,7 @@ export const CoordinationType = {
|
|
|
181
184
|
FEATURE_TYPE: 'featureType',
|
|
182
185
|
FEATURE_VALUE_TYPE: 'featureValueType',
|
|
183
186
|
OBS_LABELS_TYPE: 'obsLabelsType',
|
|
187
|
+
FEATURE_LABELS_TYPE: 'featureLabelsType',
|
|
184
188
|
// Other types
|
|
185
189
|
EMBEDDING_TYPE: 'embeddingType',
|
|
186
190
|
EMBEDDING_ZOOM: 'embeddingZoom',
|
package/src/version.json
CHANGED