You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json
+15-15
Original file line number
Diff line number
Diff line change
@@ -12,31 +12,31 @@
12
12
"mem": 8000
13
13
},
14
14
"args_schema_non_parallel": {
15
-
"title": "DropTDimension",
16
-
"type": "object",
15
+
"additionalProperties": false,
17
16
"properties": {
18
17
"zarr_url": {
19
18
"title": "Zarr Url",
20
19
"type": "string",
21
20
"description": "Path or url to the individual OME-Zarr image to be processed. (standard argument for Fractal tasks, managed by Fractal server)."
22
21
},
23
22
"suffix": {
24
-
"title": "Suffix",
25
23
"default": "no_T",
24
+
"title": "Suffix",
26
25
"type": "string",
27
26
"description": "Suffix to be used for the new Zarr image. If overwrite_input is True, this file is only temporary."
28
27
},
29
28
"overwrite_input": {
30
-
"title": "Overwrite Input",
31
29
"default": false,
30
+
"title": "Overwrite Input",
32
31
"type": "boolean",
33
32
"description": "Whether"
34
33
}
35
34
},
36
35
"required": [
37
36
"zarr_url"
38
37
],
39
-
"additionalProperties": false
38
+
"type": "object",
39
+
"title": "DropTDimension"
40
40
},
41
41
"docs_info": "## drop_t_dimension\nDrops singleton t dimension.\n"
42
42
},
@@ -51,8 +51,7 @@
51
51
"mem": 8000
52
52
},
53
53
"args_schema_parallel": {
54
-
"title": "Convert2dSegmentationTo3d",
55
-
"type": "object",
54
+
"additionalProperties": false,
56
55
"properties": {
57
56
"zarr_url": {
58
57
"title": "Zarr Url",
@@ -65,17 +64,17 @@
65
64
"description": "Name of the label to copy from 2D OME-Zarr to 3D OME-Zarr"
66
65
},
67
66
"level": {
68
-
"title": "Level",
69
67
"default": 0,
68
+
"title": "Level",
70
69
"type": "integer",
71
70
"description": "Level of the 2D OME-Zarr label to copy from"
72
71
},
73
72
"ROI_tables_to_copy": {
74
-
"title": "Roi Tables To Copy",
75
-
"type": "array",
76
73
"items": {
77
74
"type": "string"
78
75
},
76
+
"title": "Roi Tables To Copy",
77
+
"type": "array",
79
78
"description": "List of ROI table names to copy from 2D OME-Zarr to 3D OME-Zarr"
80
79
},
81
80
"new_label_name": {
@@ -84,14 +83,14 @@
84
83
"description": "Optionally overwriting the name of the label in the 3D OME-Zarr"
85
84
},
86
85
"new_table_names": {
86
+
"items": {},
87
87
"title": "New Table Names",
88
88
"type": "array",
89
-
"items": {},
90
89
"description": "Optionally overwriting the names of the ROI tables in the 3D OME-Zarr"
91
90
},
92
91
"plate_suffix": {
93
-
"title": "Plate Suffix",
94
92
"default": "_mip",
93
+
"title": "Plate Suffix",
95
94
"type": "string",
96
95
"description": "Suffix of the 2D OME-Zarr that needs to be removed to generate the path to the 3D OME-Zarr. If the 2D OME-Zarr is \"/path/to/my_plate_mip.zarr/B/03/0\" and the 3D OME-Zarr is located in \"/path/to/my_plate.zarr/B/03/0\", the correct suffix is \"_mip\"."
97
96
},
@@ -106,8 +105,8 @@
106
105
"description": "If the image name between 2D & 3D don't match, this is the suffix that should be added to the 3D image. If the 2D image is in \"/path/to/my_plate_mip.zarr/B/03/0\" and the 3D image is in \"/path/to/my_plate.zarr/B/03/0_illum_corr\", the value should be \"_illum_corr\"."
107
106
},
108
107
"overwrite": {
109
-
"title": "Overwrite",
110
108
"default": false,
109
+
"title": "Overwrite",
111
110
"type": "boolean",
112
111
"description": "If `True`, overwrite existing label and ROI tables in the 3D OME-Zarr"
113
112
}
@@ -116,11 +115,12 @@
116
115
"zarr_url",
117
116
"label_name"
118
117
],
119
-
"additionalProperties": false
118
+
"type": "object",
119
+
"title": "Convert2dSegmentationTo3d"
120
120
},
121
121
"docs_info": "## convert_2D_segmentation_to_3D\nConvert 2D segmentation to 3D segmentation.\n\nThis task loads the 2D segmentation, replicates it along the Z slice and\nstores it back into the 3D OME-Zarr image.\n\nThis is a temporary workaround task, as long as we store 2D data in\na separate OME-Zarr file from the 3D data. If the 2D & 3D OME-Zarr images\nhave different suffixes in their name, use `image_suffix_2D_to_remove` &\n`image_suffix_3D_to_add`. If their base names are different, this task\ndoes not support processing them at the moment.\n\nIt makes the assumption that the 3D OME-Zarrs are stored in the same place\nas the 2D OME-Zarrs (same based folder).\n"
0 commit comments