forked from PolusAI/image-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
45 lines (45 loc) · 1.23 KB
/
plugin.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "Stack Z-slices",
"version": "1.2.6",
"title": "Stack Z-slices into a single tiled tiff file",
"description": "Use a file name pattern to stack individual z-slices into a single image.",
"author": "Nick Schaub (nick.schaub@nih.gov)",
"institution": "National Center for Advancing Translational Sciences, National Institutes of Health",
"repository": "https://github.com/labshare/polus-plugins",
"website": "https://ncats.nih.gov/preclinical/core/informatics",
"citation": "",
"containerId": "polusai/stack-z-slice-plugin:1.2.6",
"inputs": [
{
"name": "inpDir",
"type": "collection",
"description": "Input collection",
"required": true
},
{
"name": "filePattern",
"type": "string",
"description": "File pattern for stacking slices...",
"required": true
}
],
"outputs": [
{
"name": "outDir",
"type": "collection",
"description": "Output data for the plugin"
}
],
"ui": [
{
"key": "inputs.inpDir",
"title": "Input collection: ",
"description": "Collection name..."
},
{
"key": "inputs.filePattern",
"title": "File pattern: ",
"description": "File pattern for stacking slices."
}
]
}