File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 202202 "args_schema_parallel" : {
203203 "$defs" : {
204204 "ChunkSizes" : {
205+ "description" : " Chunk size settings for OME-Zarrs. " ,
205206 "properties" : {
206207 "t" : {
207208 "title" : " T" ,
227228 }
228229 },
229230 "title" : " ChunkSizes" ,
230- "type" : " object" ,
231- "description" : " Missing description for ChunkSizes."
231+ "type" : " object"
232232 },
233233 "InitArgsCellVoyager" : {
234234 "description" : " Arguments to be passed from cellvoyager converter init to compute" ,
524524 "args_schema_parallel" : {
525525 "$defs" : {
526526 "ChunkSizes" : {
527+ "description" : " Chunk size settings for OME-Zarrs. " ,
527528 "properties" : {
528529 "t" : {
529530 "title" : " T" ,
549550 }
550551 },
551552 "title" : " ChunkSizes" ,
552- "type" : " object" ,
553- "description" : " Missing description for ChunkSizes."
553+ "type" : " object"
554554 },
555555 "InitArgsCellVoyager" : {
556556 "description" : " Arguments to be passed from cellvoyager converter init to compute" ,
Original file line number Diff line number Diff line change @@ -188,6 +188,17 @@ def channel_is_present(self: Self) -> Self:
188188
189189
190190class ChunkSizes (BaseModel ):
191+ """
192+ Chunk size settings for OME-Zarrs.
193+
194+ Attributes:
195+ t: Chunk size of time axis.
196+ c: Chunk size of channel axis.
197+ z: Chunk size of Z axis.
198+ y: Chunk size of y axis.
199+ x: Chunk size of x axis.
200+ """
201+
191202 t : Optional [int ] = None
192203 c : Optional [int ] = 1
193204 z : Optional [int ] = 10
You can’t perform that action at this time.
0 commit comments