-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from bioimage-io/add_run_url
Add run url to status
- Loading branch information
Showing
12 changed files
with
57 additions
and
3 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
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,3 +1,36 @@ | ||
# collection | ||
|
||
Maintains the resources displayed on bioimage.io (Successor to collection-bioimage-io) | ||
This repository is used to manage the resources displayed on [bioimage.io](http://bioimage.io). | ||
|
||
Most users will not directly dispatch the workflows defined in this reporitory, but should instead login on [bioimage.io](http://bioimage.io) and use the front-end to interact with the bioimage.io collection. | ||
|
||
We currently do not have a workflow for direct upload, but publicly available resource packages may be staged with a stage workflow dispatch. | ||
|
||
## Lifecycle of staged resources | ||
|
||
1. unpacking: Uploaded resource packages are unpacked and their individuell files uploaded to our public S3 storage. | ||
2. testing: Staged resources are automatically tested: Is their metadata valid? Can test outputs be reproduced from test inputs? Are linked URLs available? | ||
3. awaiting reviewe: After the tests have concluded the bioimageio reviewers are notified. | ||
4. The reviewer will result in | ||
a) changes requested: Please upload an updated version. | ||
b) accepted: The resource will be published! | ||
5. The final status of a staged resource is one of | ||
a) superseded: This staged resource version has not been published and also will not be published in the future. | ||
b) A copy of this staged version has been published as a new resource version. (note: the resource/publish version is not neccessarily identical with the stage number) | ||
|
||
Additionally an 'error' status may be shown if an exception occured. | ||
This also may be the case for invalid inputs. | ||
|
||
```mermaid | ||
graph TD; | ||
unpacking[1: unpacking]-->unpacked[unpacked] | ||
unpacked-->testing[2: testing] | ||
testing-->ar[3: awaiting review] | ||
ar--->cr[4a: changes requestd] | ||
cr-->superseded | ||
ar--->accepted[4b: accepted] | ||
accepted-->published | ||
unpacking-->error | ||
testing-->error | ||
``` |
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