Skip to content

Commit de7c200

Browse files
committed
Add output_types filter to 2d to 3d task. Closes #8
1 parent 19060da commit de7c200

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@
4949
"input_types": {
5050
"is_3D": false
5151
},
52+
"output_types": {
53+
"is_3D": true
54+
},
5255
"tags": [
5356
"Mixed modality",
5457
"2D to 3D workflows"

src/fractal_helper_tasks/dev/task_list.py

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
),
1414
ParallelTask(
1515
input_types=dict(is_3D=False),
16+
output_types=dict(is_3D=True),
1617
name="Convert 2D segmentation to 3D",
1718
executable="convert_2D_segmentation_to_3D.py",
1819
meta={"cpus_per_task": 2, "mem": 8000},

0 commit comments

Comments
 (0)