Skip to content

Commit 41043e6

Browse files
committed
Mark drop-t-dimension task as parallel
1 parent 5bb67c8 commit 41043e6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"Singleton time dimension"
1111
],
1212
"docs_info": "### Purpose\n- Removes a **singleton time (T) dimension** from an OME-Zarr image. \n- Creates a new OME-Zarr image with updated metadata and dimensions.\n- Optionally overwrites the input image if `overwrite_input` is set to True.\n\n### Outputs\n- A **new Zarr image** without the singleton T-dimension, stored with a configurable suffix. \n\n### Limitations\n- Only processes OME-Zarr images where the **T-axis is the first axis**. \n- Assumes the T-dimension is **singleton**; does not process non-singleton time axes. \n- Does not copy associated **label images** or **ROI tables** to the new Zarr structure. ",
13-
"executable_non_parallel": "drop_t_dimension.py",
14-
"meta_non_parallel": {
13+
"executable_parallel": "drop_t_dimension.py",
14+
"meta_parallel": {
1515
"cpus_per_task": 2,
1616
"mem": 8000
1717
},
18-
"args_schema_non_parallel": {
18+
"args_schema_parallel": {
1919
"additionalProperties": false,
2020
"properties": {
2121
"zarr_url": {

src/fractal_helper_tasks/dev/task_list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""Fractal Task list for Fractal Helper Tasks."""
22

3-
from fractal_tasks_core.dev.task_models import NonParallelTask, ParallelTask
3+
from fractal_tasks_core.dev.task_models import ParallelTask
44

55
TASK_LIST = [
6-
NonParallelTask(
6+
ParallelTask(
77
name="Drop T Dimension",
88
executable="drop_t_dimension.py",
99
meta={"cpus_per_task": 2, "mem": 8000},

0 commit comments

Comments
 (0)