Skip to content

Commit 02b4347

Browse files
authored
Merge pull request #16 from fractal-analytics-platform/docs_link
Add docs_link to manifest
2 parents 0574519 + f208ab4 commit 02b4347

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
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.4
33
_src_path: gh:fractal-analytics-platform/fractal-tasks-template
44
author_email: [email protected]
55
author_name: Joel Luethi

.github/workflows/build_and_test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ name: CI (build and test)
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches:
6+
- main
67
tags:
78
- "*"
89
pull_request:
9-
branches: ["main"]
10+
workflow_dispatch:
11+
release:
12+
types: [published]
1013

1114

1215
jobs:

src/fractal_helper_tasks/__FRACTAL_MANIFEST__.json

Lines changed: 4 additions & 2 deletions
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

Lines changed: 5 additions & 1 deletion
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)