From 837e544c76e720cd30cd604d43bce539b20dfa04 Mon Sep 17 00:00:00 2001 From: Tommaso Comparin <3862206+tcompa@users.noreply.github.com> Date: Tue, 10 Dec 2024 09:57:38 +0100 Subject: [PATCH 1/2] Fix singelton/singleton typo --- src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json | 2 +- src/fractal_helper_tasks/dev/task_list.py | 2 +- src/fractal_helper_tasks/drop_t_dimension.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json b/src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json index 9746921..30c3cdc 100644 --- a/src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json +++ b/src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json @@ -7,7 +7,7 @@ "has_t": false }, "tags": [ - "Singelton time dimension" + "Singleton time dimension" ], "executable_non_parallel": "drop_t_dimension.py", "meta_non_parallel": { diff --git a/src/fractal_helper_tasks/dev/task_list.py b/src/fractal_helper_tasks/dev/task_list.py index 797b0a1..1ee8ba7 100644 --- a/src/fractal_helper_tasks/dev/task_list.py +++ b/src/fractal_helper_tasks/dev/task_list.py @@ -8,7 +8,7 @@ executable="drop_t_dimension.py", meta={"cpus_per_task": 2, "mem": 8000}, output_types=dict(has_t=False), - tags=["Singelton time dimension"], + tags=["Singleton time dimension"], ), ParallelTask( input_types=dict(is_3D=False), diff --git a/src/fractal_helper_tasks/drop_t_dimension.py b/src/fractal_helper_tasks/drop_t_dimension.py index 74f0fda..9c59de5 100644 --- a/src/fractal_helper_tasks/drop_t_dimension.py +++ b/src/fractal_helper_tasks/drop_t_dimension.py @@ -5,7 +5,7 @@ # # This file is derived from a Fractal task core task developed by # Tommaso Comparin & Marco Franzon -"""Task to remove singelton T dimension from an OME-Zarr.""" +"""Task to remove singleton T dimension from an OME-Zarr.""" import logging from typing import Any From 93270d432d152535b38c5912fed9b07a96cab0e3 Mon Sep 17 00:00:00 2001 From: Tommaso Comparin <3862206+tcompa@users.noreply.github.com> Date: Tue, 10 Dec 2024 09:58:01 +0100 Subject: [PATCH 2/2] Fix command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b3c247a..521af78 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ python -m pip install -e ".[dev]" 4. The template already includes a sample task ("Thresholding Task"). Whenever you change its input parameters or docstring, re-run ```console -python src/fractal_helper_tasks/dev/update_manifest.py +python src/fractal_helper_tasks/dev/create_manifest.py git add src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json git commit -m'Update `__FRACTAL_MANIFEST__.json`' git push origin main