-
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.
modify base container to fix singularity issue
- Loading branch information
1 parent
71049b2
commit 82b382f
Showing
9 changed files
with
76 additions
and
67 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
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.2.4 | ||
0.2.4-dev2 |
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,65 +1,65 @@ | ||
author: | ||
- Melanie Parham | ||
- Hamdah Shafqat | ||
- Melanie Parham | ||
- Hamdah Shafqat | ||
contact: melanie.parham@axleinfo.com | ||
container: polusai/file-renaming-tool:0.2.4-dev0 | ||
container: polusai/file-renaming-tool:0.2.4-dev2 | ||
description: Rename and store image collection files in a new image collection | ||
entrypoint: python3 -m polus.images.formats.file_renaming | ||
inputs: | ||
- description: Filename pattern used to separate data | ||
format: | ||
- string | ||
name: filePattern | ||
required: true | ||
type: string | ||
- description: Input image collection to be processed by this plugin | ||
format: | ||
- collection | ||
name: inpDir | ||
required: true | ||
type: path | ||
- description: Desired filename pattern used to rename and separate data | ||
format: | ||
- string | ||
name: outFilePattern | ||
required: true | ||
type: string | ||
- description: Get directory name incorporated in renamed files | ||
format: | ||
- enum | ||
name: mapDirectory | ||
required: false | ||
type: string | ||
- description: Filename pattern used to separate data | ||
format: | ||
- string | ||
name: filePattern | ||
required: true | ||
type: string | ||
- description: Input image collection to be processed by this plugin | ||
format: | ||
- collection | ||
name: inpDir | ||
required: true | ||
type: path | ||
- description: Desired filename pattern used to rename and separate data | ||
format: | ||
- string | ||
name: outFilePattern | ||
required: true | ||
type: string | ||
- description: Get directory name incorporated in renamed files | ||
format: | ||
- enum | ||
name: mapDirectory | ||
required: false | ||
type: string | ||
name: polusai/FileRenaming | ||
outputs: | ||
- description: Output collection | ||
format: | ||
- collection | ||
name: outDir | ||
required: true | ||
type: path | ||
repository: https://github.com/PolusAI/polus-plugins | ||
- description: Output collection | ||
format: | ||
- collection | ||
name: outDir | ||
required: true | ||
type: path | ||
repository: https://github.com/PolusAI/image-tools | ||
specVersion: 1.0.0 | ||
title: File Renaming | ||
ui: | ||
- description: Filename pattern used to separate data | ||
key: inputs.filePattern | ||
title: Filename pattern | ||
type: text | ||
- description: Input image collection to be processed by this plugin | ||
key: inputs.inpDir | ||
title: Input collection | ||
type: path | ||
- description: Desired filename pattern used to rename and separate data | ||
key: inputs.outFilePattern | ||
title: Output filename pattern | ||
type: text | ||
- description: Get directory name incorporated in renamed files | ||
fields: | ||
- raw | ||
- map | ||
- default | ||
key: inputs.mapDirectory | ||
title: mapDirectory | ||
type: select | ||
version: 0.2.4-dev0 | ||
- description: Filename pattern used to separate data | ||
key: inputs.filePattern | ||
title: Filename pattern | ||
type: text | ||
- description: Input image collection to be processed by this plugin | ||
key: inputs.inpDir | ||
title: Input collection | ||
type: path | ||
- description: Desired filename pattern used to rename and separate data | ||
key: inputs.outFilePattern | ||
title: Output filename pattern | ||
type: text | ||
- description: Get directory name incorporated in renamed files | ||
fields: | ||
- raw | ||
- map | ||
- default | ||
key: inputs.mapDirectory | ||
title: mapDirectory | ||
type: select | ||
version: 0.2.4-dev2 |
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
formats/file-renaming-tool/src/polus/images/formats/file_renaming/__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,4 +1,4 @@ | ||
"""File Renaming.""" | ||
__version__ = "0.2.4" | ||
__version__ = "0.2.4-dev2" | ||
|
||
from . import file_renaming |