Skip to content

Commit 11613f3

Browse files
committed
Add docs_link to manifest
1 parent f60bf03 commit 11613f3

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.copier-answers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Do not edit - changes here will be overwritten by Copier
2-
_commit: v0.4.2
2+
_commit: v0.4.3
33
_src_path: gh:fractal-analytics-platform/fractal-tasks-template
44
author_email: [email protected]
55
author_name: Joel Luethi

src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"type": "object",
4242
"title": "DropTDimension"
4343
},
44-
"docs_info": "## drop_t_dimension\nDrops singleton t dimension.\n"
44+
"docs_info": "## drop_t_dimension\nDrops singleton t dimension.\n",
45+
"docs_link": "https://github.com/jluethi/fractal-helper-tasks"
4546
},
4647
{
4748
"name": "Convert 2D segmentation to 3D",
@@ -125,7 +126,8 @@
125126
"type": "object",
126127
"title": "Convert2dSegmentationTo3d"
127128
},
128-
"docs_info": "## convert_2D_segmentation_to_3D\nConvert 2D segmentation to 3D segmentation.\n\nThis task loads the 2D segmentation, replicates it along the Z slice and\nstores it back into the 3D OME-Zarr image.\n\nThis is a temporary workaround task, as long as we store 2D data in\na separate OME-Zarr file from the 3D data. If the 2D & 3D OME-Zarr images\nhave different suffixes in their name, use `image_suffix_2D_to_remove` &\n`image_suffix_3D_to_add`. If their base names are different, this task\ndoes not support processing them at the moment.\n\nIt makes the assumption that the 3D OME-Zarrs are stored in the same place\nas the 2D OME-Zarrs (same based folder).\n"
129+
"docs_info": "## convert_2D_segmentation_to_3D\nConvert 2D segmentation to 3D segmentation.\n\nThis task loads the 2D segmentation, replicates it along the Z slice and\nstores it back into the 3D OME-Zarr image.\n\nThis is a temporary workaround task, as long as we store 2D data in\na separate OME-Zarr file from the 3D data. If the 2D & 3D OME-Zarr images\nhave different suffixes in their name, use `image_suffix_2D_to_remove` &\n`image_suffix_3D_to_add`. If their base names are different, this task\ndoes not support processing them at the moment.\n\nIt makes the assumption that the 3D OME-Zarrs are stored in the same place\nas the 2D OME-Zarrs (same based folder).\n",
130+
"docs_link": "https://github.com/jluethi/fractal-helper-tasks"
129131
}
130132
],
131133
"has_args_schemas": true,

src/fractal_helper_tasks/dev/create_manifest.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@
88
"""
99
PACKAGE = "fractal_helper_tasks"
1010
AUTHORS = "Joel Luethi"
11-
create_manifest(package=PACKAGE, authors=AUTHORS)
11+
docs_link = "https://github.com/jluethi/fractal-helper-tasks"
12+
if docs_link:
13+
create_manifest(package=PACKAGE, authors=AUTHORS, docs_link=docs_link)
14+
else:
15+
create_manifest(package=PACKAGE, authors=AUTHORS)

0 commit comments

Comments
 (0)