Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,22 @@ In addition, some computational workflow approaches have RO-Crate support which
- [EOSC-Life Common Provenance Model](https://doi.org/10.5281/zenodo.4705074) (deliverable showing ISO 23494 model)
- [P-Plan ontology](https://www.opmw.org/model/p-plan/), [OPMW ontology](https://www.opmw.org/model/OPMW/) and [OPMW-PROV](https://www.opmw.org/interoperability.html)
- [ProvONE+: A Provenance Model for Scientific Workflows](https://doi.org/10.1007/978-3-030-62008-0_30) (not Open Access) [[PROV-One ontology](https://purl.dataone.org/provone-v1-dev)]


## License for specifications

© 2021--2024 The University of Manchester, UK
© 2022--2024 Centro di Ricerca, Sviluppo e Studi Superiori in Sardegna (CRS4), IT
© 2022--2024 Workflow Run Crate task force contributors

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

<http://www.apache.org/licenses/LICENSE-2.0>

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

### License for examples

Profile Crates and JSON-LD examples within this specification are distributed
under [CC0 1.0 Universal (CC0 1.0) Public Domain Dedication](https://creativecommons.org/publicdomain/zero/1.0/).

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{ "@context": "https://w3id.org/ro/crate/1.1/context",
"@graph": [
{
"@id": "ro-crate-metadata.json",
"@type": "CreativeWork",
"conformsTo": {"@id": "https://w3id.org/ro/crate/1.1"},
"about": {"@id": "./"}
},
{
"@id": "./",
"@type": "Dataset",
"conformsTo": {"@id": "https://w3id.org/ro/wfrun/process/0.4"},
"hasPart": [
{"@id": "pics/2017-06-11%2012.56.14.jpg"},
{"@id": "pics/sepia_fence.jpg"}
],
"isBasedOn": {
"@id": "https://doi.org/10.5281/zenodo.1009240"
},
"license": {"@id": "http://spdx.org/licenses/CC0-1.0"},
"mentions": {"@id": "#SepiaConversion_1"},
"name": "My Pictures"
},
{ "@id": "https://w3id.org/ro/wfrun/process/0.4",
"@type": "CreativeWork",
"name": "Process Run Crate",
"version": "0.5"
},
{
"@id": "https://www.imagemagick.org/",
"@type": "SoftwareApplication",
"url": "https://www.imagemagick.org/",
"name": "ImageMagick",
"softwareVersion": "6.9.7-4"
},
{
"@id": "#SepiaConversion_1",
"@type": "CreateAction",
"name": "Convert dog image to sepia",
"description": "convert -sepia-tone 80% pics/2017-06-11\\ 12.56.14.jpg pics/sepia_fence.jpg",
"endTime": "2024-05-17T01:04:52+01:00",
"instrument": {"@id": "https://www.imagemagick.org/"},
"object": {"@id": "pics/2017-06-11%2012.56.14.jpg"},
"result": {"@id": "pics/sepia_fence.jpg"},
"agent": {"@id": "https://orcid.org/0000-0001-9842-9718"}
},
{
"@id": "pics/2017-06-11%2012.56.14.jpg",
"@type": "File",
"description": "Original image",
"encodingFormat": "image/jpeg",
"name": "2017-06-11 12.56.14.jpg (input)",
"author": {
"@id": "https://orcid.org/0000-0002-3545-944X"
}
},
{
"@id": "pics/sepia_fence.jpg",
"@type": "File",
"description": "The converted picture, now sepia-colored",
"encodingFormat": "image/jpeg",
"name": "sepia_fence (output)"
},
{
"@id": "https://orcid.org/0000-0001-9842-9718",
"@type": "Person",
"name": "Stian Soiland-Reyes"
},
{
"@id": "https://orcid.org/0000-0002-3545-944X",
"@type": "Person",
"name": "Peter Sefton"
}
]
}
Loading