io_models
ChunkSizes
¶
Bases: BaseModel
Chunk size settings for OME-Zarrs.
ATTRIBUTE | DESCRIPTION |
---|---|
t |
Chunk size of time axis. |
c |
Chunk size of channel axis. |
z |
Chunk size of Z axis. |
y |
Chunk size of y axis. |
x |
Chunk size of x axis. |
Source code in fractal_tasks_core/tasks/io_models.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
|
InitArgsCellVoyager
¶
Bases: BaseModel
Arguments to be passed from cellvoyager converter init to compute
ATTRIBUTE | DESCRIPTION |
---|---|
image_dir |
Directory where the raw images are found
TYPE:
|
plate_prefix |
part of the image filename needed for finding the right subset of image files
TYPE:
|
well_ID |
part of the image filename needed for finding the right subset of image files
TYPE:
|
image_extension |
part of the image filename needed for finding the right subset of image files
TYPE:
|
include_glob_patterns |
Additional glob patterns to filter the available images with. |
exclude_glob_patterns |
Glob patterns to exclude. |
acquisition |
Acquisition metadata needed for multiplexing |
Source code in fractal_tasks_core/tasks/io_models.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
|
InitArgsIllumination
¶
Bases: BaseModel
Dummy model description.
ATTRIBUTE | DESCRIPTION |
---|---|
raw_path |
dummy attribute description.
TYPE:
|
subsets |
dummy attribute description. |
Source code in fractal_tasks_core/tasks/io_models.py
70 71 72 73 74 75 76 77 78 79 80 |
|
InitArgsMIP
¶
Bases: BaseModel
Init Args for MIP task.
ATTRIBUTE | DESCRIPTION |
---|---|
origin_url |
Path to the zarr_url with the 3D data
TYPE:
|
method |
Projection method to be used. See
TYPE:
|
overwrite |
If
TYPE:
|
new_plate_name |
Name of the new OME-Zarr HCS plate
TYPE:
|
Source code in fractal_tasks_core/tasks/io_models.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
|
InitArgsRegistration
¶
Bases: BaseModel
Registration init args.
Passed from image_based_registration_hcs_init
to
calculate_registration_image_based
.
ATTRIBUTE | DESCRIPTION |
---|---|
reference_zarr_url |
zarr_url for the reference image
TYPE:
|
Source code in fractal_tasks_core/tasks/io_models.py
15 16 17 18 19 20 21 22 23 24 25 26 |
|
InitArgsRegistrationConsensus
¶
Bases: BaseModel
Registration consensus init args.
Provides the list of zarr_urls for all acquisitions for a given well
ATTRIBUTE | DESCRIPTION |
---|---|
zarr_url_list |
List of zarr_urls for all the OME-Zarr images in the well. |
Source code in fractal_tasks_core/tasks/io_models.py
29 30 31 32 33 34 35 36 37 38 39 40 |
|
MultiplexingAcquisition
¶
Bases: BaseModel
Input class for Multiplexing Cellvoyager converter
ATTRIBUTE | DESCRIPTION |
---|---|
image_dir |
Path to the folder that contains the Cellvoyager image files for that acquisition and the MeasurementData & MeasurementDetail metadata files.
TYPE:
|
allowed_channels |
A list of
TYPE:
|
Source code in fractal_tasks_core/tasks/io_models.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
NapariWorkflowsInput
¶
Bases: BaseModel
A value of the input_specs
argument in napari_workflows_wrapper
.
ATTRIBUTE | DESCRIPTION |
---|---|
type |
Input type (either
TYPE:
|
label_name |
Label name (for label inputs only). |
channel |
TYPE:
|
Source code in fractal_tasks_core/tasks/io_models.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
|
channel_is_present()
¶
Check that image inputs have channel
set.
Source code in fractal_tasks_core/tasks/io_models.py
176 177 178 179 180 181 182 183 184 185 186 187 |
|
label_name_is_present()
¶
Check that label inputs have label_name
set.
Source code in fractal_tasks_core/tasks/io_models.py
163 164 165 166 167 168 169 170 171 172 173 174 |
|
NapariWorkflowsOutput
¶
Bases: BaseModel
A value of the output_specs
argument in napari_workflows_wrapper
.
ATTRIBUTE | DESCRIPTION |
---|---|
type |
Output type (either
TYPE:
|
label_name |
Label name (for label outputs, it is used as the name of
the label; for dataframe outputs, it is used to fill the
TYPE:
|
table_name |
Table name (for dataframe outputs only). |
Source code in fractal_tasks_core/tasks/io_models.py
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|
table_name_only_for_dataframe_type()
¶
Check that table_name is set only for dataframe outputs.
Source code in fractal_tasks_core/tasks/io_models.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
|