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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"has_t": false
},
"tags": [
"Singelton time dimension"
"Singleton time dimension"
],
"executable_non_parallel": "drop_t_dimension.py",
"meta_non_parallel": {
Expand Down
2 changes: 1 addition & 1 deletion src/fractal_helper_tasks/dev/task_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion src/fractal_helper_tasks/drop_t_dimension.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down