Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
34c8949
Support zarr 3
joshua-gould Jan 29, 2026
b0bfdc8
Support zarr 3
joshua-gould Jan 29, 2026
7a14f80
Support zarr 3
joshua-gould Jan 29, 2026
8cfdafb
Support zarr 3
joshua-gould Jan 30, 2026
da8161c
Support zarr 3
joshua-gould Jan 30, 2026
bb1aa32
Support zarr 3
joshua-gould Jan 30, 2026
0f67910
updated dask
joshua-gould Feb 2, 2026
734e6f4
revert dask
joshua-gould Feb 2, 2026
217a63d
revert dask
joshua-gould Feb 2, 2026
2910bb6
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Feb 3, 2026
c374a6f
zarr config test
joshua-gould Feb 3, 2026
061e7da
zarr config test
joshua-gould Feb 3, 2026
01ca3f6
add trailing c dimension
joshua-gould Feb 3, 2026
51892b2
removed unused parameter
joshua-gould Feb 3, 2026
222fbc8
added default value for file separator
joshua-gould Feb 3, 2026
fdd3546
updated keyword args for saving to zarr
joshua-gould Feb 3, 2026
01d9046
remove unused delayed list
joshua-gould Feb 3, 2026
225be89
consolidate calls to getting fs sep
joshua-gould Feb 3, 2026
22206d0
added missing param
joshua-gould Feb 3, 2026
1c247d4
test with zarr 3 - open zarr
joshua-gould Feb 3, 2026
bf03ca1
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Feb 4, 2026
fc9aedb
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Feb 5, 2026
8c8b71b
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Feb 6, 2026
e345868
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Feb 10, 2026
a113c8e
write to zarr 2 format using zarr 3 library
joshua-gould Feb 10, 2026
1640298
write to zarr 2 format using zarr 3 library
joshua-gould Feb 10, 2026
a681953
write to zarr 2 format using zarr 3 library
joshua-gould Feb 10, 2026
03821d0
write to zarr 2 format using zarr 3 library
joshua-gould Feb 10, 2026
020b1ee
write to zarr 2 format using zarr 3 library
joshua-gould Feb 11, 2026
58372b4
use bio ome zarr reader
joshua-gould Feb 11, 2026
feec2d9
remove numpy<2
joshua-gould Feb 11, 2026
1da21eb
remove numpy<2
joshua-gould Feb 11, 2026
b60f7a7
update ipython
joshua-gould Feb 11, 2026
b5d383a
update deps
joshua-gould Feb 11, 2026
aab02d4
update deps
joshua-gould Feb 11, 2026
1c25fd3
rps temp fix
joshua-gould Feb 11, 2026
612aa3c
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Feb 13, 2026
4c0de22
try zarr inputs again
joshua-gould Feb 13, 2026
5944ec1
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Mar 12, 2026
fa3d5da
update requirements
joshua-gould Mar 12, 2026
dd958d9
update requirements
joshua-gould Mar 12, 2026
427085d
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Mar 27, 2026
f857ccf
updated
joshua-gould Mar 27, 2026
b0286cd
updated
joshua-gould Mar 27, 2026
3c000c1
removed pysam
joshua-gould Mar 27, 2026
da4ca13
dask spec
joshua-gould Mar 27, 2026
d18a12a
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Mar 30, 2026
cd7f304
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Mar 31, 2026
a421740
get path from multiscales
joshua-gould Mar 31, 2026
56c8757
get path from multiscales
joshua-gould Apr 1, 2026
0d34f3e
update dask
joshua-gould Apr 1, 2026
0b27ba9
update dask
joshua-gould Apr 1, 2026
556b6b5
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Apr 6, 2026
05ae8df
updated
joshua-gould Apr 6, 2026
f419495
Merge branch 'main' of https://github.com/Genentech/scallops into req…
joshua-gould Apr 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ classifiers = [# https://pypi.python.org/pypi?%3Aaction=list_classifiers
dependencies = [
"adjustText",
"anndata>=0.12.4", # https://github.com/scverse/anndata/issues/2166
"bioio<2",
"bioio",
"bioio-nd2",
"bioio-tifffile",
"centrosome",
"cp-measure>=0.1.16",
"dask-image",
"dask<=2025.11.0",
"dask!=2026.1.1,!=2026.1.0,!=2025.12.0", # ignores keyword arguments in da.to_zarr
"decorator",
"filelock",
"flox",
Expand All @@ -54,7 +54,7 @@ dependencies = [
"natsort",
"numcodecs",
"numpy",
"ome-zarr<0.12.0",
"ome-zarr",
"pandas",
"pint",
"psutil",
Expand All @@ -68,9 +68,9 @@ dependencies = [
"stardist",
"statsmodels",
"tensorflow",
"tifffile<=2025.5.10",
"tifffile",
"xarray",
"zarr<3"
"zarr>=3"
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion requirements.doc.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ipython==9.9.0
ipython==9.10.0
nbsphinx==0.9.8
sphinx-copybutton==0.5.2
sphinx==9.1.0
Expand Down
16 changes: 9 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
anndata==0.12.10
adjustText==1.3.0
bioio-nd2==1.3.0
bioio==3.3.0
bioio-nd2==1.7.0
bioio-ome-tiff==1.4.0
bioio-ome-zarr==3.3.0
bioio-tifffile==1.3.0
bioio==1.6.1
centrosome==1.3.3
cp-measure==0.1.16
cython==3.2.4
dask-image==2025.11.0
dask==2025.11.0
dask==2025.12.0
decorator==5.2.1
filelock==3.25.2
flox==0.11.2
Expand All @@ -20,9 +22,9 @@ kneed==0.8.6
mahotas==1.4.18
matplotlib==3.10.8
natsort==8.4.0
numcodecs==0.15.1
numcodecs==0.16.5
numpy==2.4.4
ome-zarr==0.11.1
ome-zarr==0.14.0
pandas==2.3.3
pint==0.25.3
psutil==7.2.2
Expand All @@ -36,6 +38,6 @@ shapely==2.1.2
stardist==0.9.2
statsmodels==0.14.6
tensorflow==2.21.0
tifffile==2025.5.10
tifffile==2026.3.3
xarray==2026.2.0
zarr==2.18.7
zarr==3.1.6
263 changes: 0 additions & 263 deletions scallops/_bioio_zarr_reader.py

This file was deleted.

Loading
Loading