io_models
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
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
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
68 69 70 71 72 73 74 75 76 77 78 |
|
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:
|
Source code in fractal_tasks_core/tasks/io_models.py
81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
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
13 14 15 16 17 18 19 20 21 22 23 24 |
|
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
27 28 29 30 31 32 33 34 35 36 37 38 |
|
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
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
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
145 146 147 148 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 |
|
channel_is_present()
¶
Check that image inputs have channel
set.
Source code in fractal_tasks_core/tasks/io_models.py
172 173 174 175 176 177 178 179 180 181 182 183 |
|
label_name_is_present()
¶
Check that label inputs have label_name
set.
Source code in fractal_tasks_core/tasks/io_models.py
159 160 161 162 163 164 165 166 167 168 169 170 |
|
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
113 114 115 116 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 |
|
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
129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
|