Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"Singleton time dimension"
],
"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. ",
"executable_non_parallel": "drop_t_dimension.py",
"meta_non_parallel": {
"executable_parallel": "drop_t_dimension.py",
"meta_parallel": {
"cpus_per_task": 2,
"mem": 8000
},
"args_schema_non_parallel": {
"args_schema_parallel": {
"additionalProperties": false,
"properties": {
"zarr_url": {
Expand Down
4 changes: 2 additions & 2 deletions src/fractal_helper_tasks/dev/task_list.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""Fractal Task list for Fractal Helper Tasks."""

from fractal_tasks_core.dev.task_models import NonParallelTask, ParallelTask
from fractal_tasks_core.dev.task_models import ParallelTask

TASK_LIST = [
NonParallelTask(
ParallelTask(
name="Drop T Dimension",
executable="drop_t_dimension.py",
meta={"cpus_per_task": 2, "mem": 8000},
Expand Down
Loading