@vitessce/vit-s 3.9.9 → 3.9.11
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 +13 -3
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -33977,6 +33977,7 @@ const FileType$1 = {
|
|
|
33977
33977
|
OBS_LABELS_MUDATA_ZARR: "obsLabels.mudata.zarr",
|
|
33978
33978
|
FEATURE_LABELS_MUDATA_ZARR: "featureLabels.mudata.zarr",
|
|
33979
33979
|
GENOMIC_PROFILES_ZARR: "genomic-profiles.zarr",
|
|
33980
|
+
GENOMIC_PROFILES_ZARR_ZIP: "genomic-profiles.zarr.zip",
|
|
33980
33981
|
NEIGHBORHOODS_JSON: "neighborhoods.json",
|
|
33981
33982
|
// OME-TIFF
|
|
33982
33983
|
IMAGE_OME_TIFF: "image.ome-tiff",
|
|
@@ -34246,6 +34247,7 @@ const STATUS = {
|
|
|
34246
34247
|
[FileType$1.OBS_LABELS_MOLECULES_JSON]: DataType$1.OBS_LABELS,
|
|
34247
34248
|
// For old file types
|
|
34248
34249
|
[FileType$1.GENOMIC_PROFILES_ZARR]: DataType$1.GENOMIC_PROFILES,
|
|
34250
|
+
[FileType$1.GENOMIC_PROFILES_ZARR_ZIP]: DataType$1.GENOMIC_PROFILES,
|
|
34249
34251
|
[FileType$1.NEIGHBORHOODS_JSON]: DataType$1.NEIGHBORHOODS
|
|
34250
34252
|
});
|
|
34251
34253
|
const DATA_TYPE_COORDINATION_VALUE_USAGE = {
|
|
@@ -34410,6 +34412,10 @@ const DATA_TYPE_COORDINATION_VALUE_USAGE = {
|
|
|
34410
34412
|
},
|
|
34411
34413
|
[FileType$1.OBS_EMBEDDING_SPATIALDATA_ZARR]: {
|
|
34412
34414
|
zip: FileType$1.OBS_EMBEDDING_SPATIALDATA_ZARR_ZIP
|
|
34415
|
+
},
|
|
34416
|
+
// For genomic profiles:
|
|
34417
|
+
[FileType$1.GENOMIC_PROFILES_ZARR]: {
|
|
34418
|
+
zip: FileType$1.GENOMIC_PROFILES_ZARR_ZIP
|
|
34413
34419
|
}
|
|
34414
34420
|
});
|
|
34415
34421
|
const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
@@ -35123,7 +35129,7 @@ const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
|
35123
35129
|
CoordinationType$1.HIERARCHY_LEVELS
|
|
35124
35130
|
]
|
|
35125
35131
|
});
|
|
35126
|
-
const version = "3.9.
|
|
35132
|
+
const version = "3.9.11";
|
|
35127
35133
|
const META_VERSION = {
|
|
35128
35134
|
version
|
|
35129
35135
|
};
|
|
@@ -36966,7 +36972,9 @@ const fileTypeToExtensions = {
|
|
|
36966
36972
|
// TODO: how to handle h5ad-based AnnData (since needs reference JSON file).
|
|
36967
36973
|
// Perhaps just assume one H5AD+one JSON (or .ref.json) file correspond to each other?
|
|
36968
36974
|
[FileType$1.SPATIALDATA_ZARR]: [".sd.zarr", ".sdata.zarr", ".spatialdata.zarr"],
|
|
36969
|
-
[FileType$1.SPATIALDATA_ZARR_ZIP]: [".sd.zarr.zip", ".sdata.zarr.zip", ".spatialdata.zarr.zip"]
|
|
36975
|
+
[FileType$1.SPATIALDATA_ZARR_ZIP]: [".sd.zarr.zip", ".sdata.zarr.zip", ".spatialdata.zarr.zip"],
|
|
36976
|
+
[FileType$1.GENOMIC_PROFILES_ZARR]: [".multivec.zarr"],
|
|
36977
|
+
[FileType$1.GENOMIC_PROFILES_ZARR_ZIP]: [".multivec.zarr.zip"]
|
|
36970
36978
|
};
|
|
36971
36979
|
const fileTypeToClass = {
|
|
36972
36980
|
// OME-TIFF
|
|
@@ -36992,7 +37000,9 @@ const ZARR_FILETYPES = [
|
|
|
36992
37000
|
FileType$1.IMAGE_OME_ZARR,
|
|
36993
37001
|
FileType$1.IMAGE_OME_ZARR_ZIP,
|
|
36994
37002
|
FileType$1.OBS_SEGMENTATIONS_OME_ZARR,
|
|
36995
|
-
FileType$1.OBS_SEGMENTATIONS_OME_ZARR_ZIP
|
|
37003
|
+
FileType$1.OBS_SEGMENTATIONS_OME_ZARR_ZIP,
|
|
37004
|
+
FileType$1.GENOMIC_PROFILES_ZARR,
|
|
37005
|
+
FileType$1.GENOMIC_PROFILES_ZARR_ZIP
|
|
36996
37006
|
];
|
|
36997
37007
|
function urlToFileType(url) {
|
|
36998
37008
|
const match2 = Object.entries(fileTypeToExtensions).find(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/vit-s",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.11",
|
|
4
4
|
"author": "HIDIVE Lab at HMS",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"react-error-boundary": "^5.0.0",
|
|
32
32
|
"@placemarkio/flat-drop-files": "^1.0.2",
|
|
33
33
|
"zarrita": "0.6.1",
|
|
34
|
-
"@vitessce/abstract": "3.9.
|
|
35
|
-
"@vitessce/styles": "3.9.
|
|
36
|
-
"@vitessce/
|
|
37
|
-
"@vitessce/
|
|
38
|
-
"@vitessce/
|
|
39
|
-
"@vitessce/
|
|
40
|
-
"@vitessce/utils": "3.9.
|
|
41
|
-
"@vitessce/sets-utils": "3.9.
|
|
42
|
-
"@vitessce/zarr-utils": "3.9.
|
|
43
|
-
"@vitessce/config": "3.9.
|
|
44
|
-
"@vitessce/globals": "3.9.
|
|
34
|
+
"@vitessce/abstract": "3.9.11",
|
|
35
|
+
"@vitessce/styles": "3.9.11",
|
|
36
|
+
"@vitessce/constants-internal": "3.9.11",
|
|
37
|
+
"@vitessce/error": "3.9.11",
|
|
38
|
+
"@vitessce/schemas": "3.9.11",
|
|
39
|
+
"@vitessce/plugins": "3.9.11",
|
|
40
|
+
"@vitessce/utils": "3.9.11",
|
|
41
|
+
"@vitessce/sets-utils": "3.9.11",
|
|
42
|
+
"@vitessce/zarr-utils": "3.9.11",
|
|
43
|
+
"@vitessce/config": "3.9.11",
|
|
44
|
+
"@vitessce/globals": "3.9.11"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"react-dom": "18.3.1",
|
|
51
51
|
"vite": "^7.0.0",
|
|
52
52
|
"vitest": "^3.1.4",
|
|
53
|
-
"@vitessce/types": "3.9.
|
|
53
|
+
"@vitessce/types": "3.9.11"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|