Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT: TensorStore + Zarr3 + Sharding #9

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ share/python-wheels/
*.egg
MANIFEST

.idea/

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
Expand Down
32 changes: 23 additions & 9 deletions conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,27 @@ name: linc-convert
channels:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Flag file for comment with @balbasty

- conda-forge
dependencies:
- python
- ipython
- typer
- numpy
- glymur
- zarr
- nibabel
- tifffile
- python=3.12
- ipython=8.22.2
- typer=0.12.2
- numpy=1.26.4
- glymur=0.12.9.post2
- zarr=2.17.1
- nibabel=5.2.1
- tifffile=2024.4.18
- pandas=2.2.2
- scipy=1.13.0
- fsspec=2024.10.0
- pip
- pip:
- cyclopts
- cyclopts==2.5.0
- rich==13.7.1
- universal_pathlib==0.2.5
- matplotlib==3.8.4
- dask==2024.4.2
- distributed==2024.4.2
- imagecodecs==2024.1.1
- pyarrow==15.0.2
- pyarrow-hotfix==0.6
- rich-rst==1.2.0
- tensorstore==0.1.68
1 change: 0 additions & 1 deletion linc_convert/modalities/df/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Dark Field microscopy converters."""

__all__ = ["cli", "multi_slice", "single_slice"]

from . import cli, multi_slice, single_slice
2 changes: 1 addition & 1 deletion linc_convert/modalities/df/multi_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# internals
from linc_convert.modalities.df.cli import df
from linc_convert.utils.j2k import WrappedJ2K, get_pixelsize
from linc_convert.utils.math import ceildiv, floordiv
from linc_convert.utils.custom_math import ceildiv, floordiv
from linc_convert.utils.orientation import center_affine, orientation_to_affine
from linc_convert.utils.zarr import make_compressor

Expand Down
2 changes: 1 addition & 1 deletion linc_convert/modalities/df/single_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# internals
from linc_convert.modalities.df.cli import df
from linc_convert.utils.j2k import WrappedJ2K, get_pixelsize
from linc_convert.utils.math import ceildiv
from linc_convert.utils.custom_math import ceildiv
from linc_convert.utils.orientation import center_affine, orientation_to_affine
from linc_convert.utils.zarr import make_compressor

Expand Down
1 change: 1 addition & 0 deletions linc_convert/modalities/lsm/convert_tiff_to_zarr.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from linc_convert.modalities.lsm.mosaic import convert
Loading
Loading