-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sync option to keep classifications definitions up-to-date.
- Loading branch information
Showing
3 changed files
with
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
{ | ||
"name": "pfile-mr-classifier", | ||
"label": "CNI: GE P-File Classifier", | ||
"description": "Extracts GE P-File headers and generates JSON metadata (.metadata.json) which is saved in Flywheel on the P-File's info object. This gear also attempts to determine the P-Files classification.", | ||
"description": "Extracts GE P-File header and generates JSON metadata (.metadata.json) which is saved in Flywheel on the P-File's info object. This gear also attempts to determine the P-File's classification (measurement, intent, etc.).", | ||
"maintainer": "Michael Perry <[email protected]>", | ||
"author": "Michael Perry <[email protected]>", | ||
"url": "https://cni.stanford.edu", | ||
"source": "https://github.com/cni/pfile-mr-classifier", | ||
"cite": "pfile-tools: GE P-File Utilities (https://github.com/njvack/pfile-tools)", | ||
"license": "BSD-2-Clause", | ||
"flywheel": "0", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"custom": { | ||
"docker-image": "stanfordcni/pfile-mr-classifier:1.0.0" | ||
"docker-image": "stanfordcni/pfile-mr-classifier:1.1.0" | ||
}, | ||
"config": { | ||
"timezone": { | ||
"description": "Time Zone to which all timestamps should be localized. This will set the default time zone in the Gear and thus localize the timestamps to that time zone. Examples: 'America/Los_Angeles', 'America/New_York'. [default = 'America/Los_Angeles'].", | ||
"description": "Time Zone to which all timestamps should be localized. This will set the default time zone in the Gear and thus localize the timestamps to that time zone. Examples: 'UTC', 'America/Los_Angeles', 'America/New_York'. [default = 'America/Los_Angeles'].", | ||
"type": "string", | ||
"default": "America/Los_Angeles" | ||
}, | ||
"sync": { | ||
"description": "Synchronize classification definitions with the latest known updates found at scitran-apps/dicom-mr-classifier [default = true].", | ||
"type": "boolean", | ||
"default": true | ||
} | ||
}, | ||
"inputs": { | ||
|
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