-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ict.yaml for dim stacking (#555)
* chore: added ict.yaml for dim stacking * Bump version: 0.1.1-dev2 → 0.1.1-dev3 * fix: ict after pper review
- Loading branch information
Showing
7 changed files
with
60 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.1-dev2 | ||
0.1.1-dev3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
author: | ||
- Nick Schaub | ||
- Hamdah Shafqat Abbasi | ||
contact: nick.schaub@nih.gov | ||
container: polusai/image-dimension-stacking-tool:0.1.1-dev3 | ||
description: Stacking of image dimensions (c, z, t) to create a multidimensional image. | ||
entrypoint: python3 -m polus.images.formats.image_dimension_stacking | ||
inputs: | ||
- description: Input image collection to be processed by this plugin. | ||
format: | ||
- collection | ||
name: inpDir | ||
required: true | ||
type: path | ||
- description: Filename pattern used to separate data | ||
format: | ||
- string | ||
name: filePattern | ||
required: true | ||
type: string | ||
- description: Generate an output preview | ||
format: | ||
- boolean | ||
name: preview | ||
required: false | ||
type: boolean | ||
name: polusai/ImageDimensionStacking | ||
outputs: | ||
- description: Output collection | ||
format: | ||
- collection | ||
name: outDir | ||
required: true | ||
type: path | ||
repository: https://github.com/PolusAI/image-tools | ||
specVersion: 1.0.0 | ||
title: Image Dimension Stacking | ||
ui: | ||
- description: Input image collection to be processed by this plugin | ||
key: inputs.inpDir | ||
title: Input collection | ||
type: path | ||
- description: Filename pattern used to separate data | ||
key: inputs.filePattern | ||
title: Filename pattern | ||
type: text | ||
- description: Generate an output preview | ||
key: inputs.preview | ||
title: Generate preview | ||
type: boolean | ||
version: 0.1.1-dev0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...age-dimension-stacking-tool/src/polus/images/formats/image_dimension_stacking/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Image dimension stacking package.""" | ||
|
||
__version__ = "0.1.1-dev2" | ||
__version__ = "0.1.1-dev3" |