@vitessce/config 3.3.5 → 3.3.7
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 +20 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
const FileType = {
|
|
2
2
|
// Joint file types
|
|
3
3
|
ANNDATA_ZARR: "anndata.zarr",
|
|
4
|
+
ANNDATA_ZARR_ZIP: "anndata.zarr.zip",
|
|
4
5
|
SPATIALDATA_ZARR: "spatialdata.zarr",
|
|
5
6
|
// Atomic file types
|
|
6
7
|
OBS_EMBEDDING_CSV: "obsEmbedding.csv",
|
|
@@ -13,6 +14,7 @@ const FileType = {
|
|
|
13
14
|
OBS_SEGMENTATIONS_JSON: "obsSegmentations.json",
|
|
14
15
|
OBS_SETS_CSV: "obsSets.csv",
|
|
15
16
|
OBS_SETS_JSON: "obsSets.json",
|
|
17
|
+
SAMPLE_SETS_CSV: "sampleSets.csv",
|
|
16
18
|
// OME-Zarr
|
|
17
19
|
IMAGE_OME_ZARR: "image.ome-zarr",
|
|
18
20
|
OBS_SEGMENTATIONS_OME_ZARR: "obsSegmentations.ome-zarr",
|
|
@@ -27,6 +29,19 @@ const FileType = {
|
|
|
27
29
|
OBS_SEGMENTATIONS_ANNDATA_ZARR: "obsSegmentations.anndata.zarr",
|
|
28
30
|
OBS_LABELS_ANNDATA_ZARR: "obsLabels.anndata.zarr",
|
|
29
31
|
FEATURE_LABELS_ANNDATA_ZARR: "featureLabels.anndata.zarr",
|
|
32
|
+
SAMPLE_EDGES_ANNDATA_ZARR: "sampleEdges.anndata.zarr",
|
|
33
|
+
// AnnData - zipped
|
|
34
|
+
OBS_FEATURE_MATRIX_ANNDATA_ZARR_ZIP: "obsFeatureMatrix.anndata.zarr.zip",
|
|
35
|
+
OBS_FEATURE_COLUMNS_ANNDATA_ZARR_ZIP: "obsFeatureColumns.anndata.zarr.zip",
|
|
36
|
+
OBS_SETS_ANNDATA_ZARR_ZIP: "obsSets.anndata.zarr.zip",
|
|
37
|
+
OBS_EMBEDDING_ANNDATA_ZARR_ZIP: "obsEmbedding.anndata.zarr.zip",
|
|
38
|
+
OBS_SPOTS_ANNDATA_ZARR_ZIP: "obsSpots.anndata.zarr.zip",
|
|
39
|
+
OBS_POINTS_ANNDATA_ZARR_ZIP: "obsPoints.anndata.zarr.zip",
|
|
40
|
+
OBS_LOCATIONS_ANNDATA_ZARR_ZIP: "obsLocations.anndata.zarr.zip",
|
|
41
|
+
OBS_SEGMENTATIONS_ANNDATA_ZARR_ZIP: "obsSegmentations.anndata.zarr.zip",
|
|
42
|
+
OBS_LABELS_ANNDATA_ZARR_ZIP: "obsLabels.anndata.zarr.zip",
|
|
43
|
+
FEATURE_LABELS_ANNDATA_ZARR_ZIP: "featureLabels.anndata.zarr.zip",
|
|
44
|
+
SAMPLE_EDGES_ANNDATA_ZARR_ZIP: "sampleEdges.anndata.zarr.zip",
|
|
30
45
|
// SpatialData
|
|
31
46
|
IMAGE_SPATIALDATA_ZARR: "image.spatialdata.zarr",
|
|
32
47
|
LABELS_SPATIALDATA_ZARR: "labels.spatialdata.zarr",
|
|
@@ -34,6 +49,7 @@ const FileType = {
|
|
|
34
49
|
OBS_FEATURE_MATRIX_SPATIALDATA_ZARR: "obsFeatureMatrix.spatialdata.zarr",
|
|
35
50
|
OBS_SETS_SPATIALDATA_ZARR: "obsSets.spatialdata.zarr",
|
|
36
51
|
OBS_SPOTS_SPATIALDATA_ZARR: "obsSpots.spatialdata.zarr",
|
|
52
|
+
FEATURE_LABELS_SPATIALDATA_ZARR: "featureLabels.spatialdata.zarr",
|
|
37
53
|
// TODO:
|
|
38
54
|
// OBS_POINTS_SPATIALDATA_ZARR: 'obsPoints.spatialdata.zarr',
|
|
39
55
|
// OBS_LOCATIONS_SPATIALDATA_ZARR: 'obsLocations.spatialdata.zarr',
|
|
@@ -190,7 +206,10 @@ const CoordinationType = {
|
|
|
190
206
|
LEGEND_VISIBLE: "legendVisible",
|
|
191
207
|
SPATIAL_CHANNEL_LABELS_VISIBLE: "spatialChannelLabelsVisible",
|
|
192
208
|
SPATIAL_CHANNEL_LABELS_ORIENTATION: "spatialChannelLabelsOrientation",
|
|
193
|
-
SPATIAL_CHANNEL_LABEL_SIZE: "spatialChannelLabelSize"
|
|
209
|
+
SPATIAL_CHANNEL_LABEL_SIZE: "spatialChannelLabelSize",
|
|
210
|
+
// Multi-sample / comparative
|
|
211
|
+
SAMPLE_TYPE: "sampleType",
|
|
212
|
+
SAMPLE_SET_SELECTION: "sampleSetSelection"
|
|
194
213
|
};
|
|
195
214
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
196
215
|
function getDefaultExportFromCjs(x) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/config",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.7",
|
|
4
4
|
"author": "Gehlenborg Lab",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"dist-tsc"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@vitessce/utils": "3.3.
|
|
20
|
-
"@vitessce/constants-internal": "3.3.
|
|
19
|
+
"@vitessce/utils": "3.3.7",
|
|
20
|
+
"@vitessce/constants-internal": "3.3.7"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"bundle": "pnpm exec vite build -c ../../scripts/vite.config.js",
|