We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f64c9 commit 5a97a7bCopy full SHA for 5a97a7b
1 file changed
src/imcflibs/imagej/bdv.py
@@ -846,6 +846,12 @@ def define_dataset_auto(
846
hdf5_chunk_sizes = "hdf5_chunk_sizes=" + hdf5_chunk_sizes + " "
847
else:
848
hdf5_chunk_sizes = ""
849
+ if timepoints_per_partition > 0:
850
+ split_timepoints = "split_hdf5 timepoints_per_partition=" + str(
851
+ timepoints_per_partition
852
+ )
853
+ else:
854
+ split_timepoints = ""
855
856
if bf_series_type == "Angles":
857
angle_rotation = "apply_angle_rotation "
@@ -883,9 +889,7 @@ def define_dataset_auto(
883
889
+ angle_rotation
884
890
+ subsampling_factors
885
891
+ hdf5_chunk_sizes
886
- + "split_hdf5 "
887
- + "timepoints_per_partition="
888
- + str(timepoints_per_partition)
892
+ + split_timepoints
893
+ " "
894
+ "setups_per_partition=0 "
895
+ "use_deflate_compression "
0 commit comments