-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expand wrroc with fields needed for federated analysis #37
Changes from all commits
4327868
ac05da2
3509ac1
12e46bd
e047834
5e2964d
4295943
ef96fea
5c3ed70
473f88b
b8f098d
e5d2e7b
becb3dd
38f4c64
2e5f648
940a1ab
53ce54b
332ad35
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,12 @@ prov { | |
wrroc { | ||
file = "${params.outdir}/ro-crate-metadata.json" | ||
overwrite = true | ||
agent { | ||
name = "John Doe" | ||
orcid = "https://orcid.org/0000-0000-0000-0000" | ||
} | ||
license = "https://spdx.org/licenses/Apache-2.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we not pull this information automatically from a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This new output format for the nf-prov plugin creates RO-Crates that follow this profile. Similar to your previous review concerning the agent, the license is added directly to the RO-Crate. The crate will include input and output files, the pipeline configuration, and the pipeline itself. I will ensure that the |
||
profile = "provenance_run_crate" | ||
} | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can pull this information from the new
manifest.contributors
config scope now:https://www.nextflow.io/docs/latest/reference/config.html#config-manifest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new output format for the nf-prov plugin creates RO-Crates that follow this profile.
The agent mentioned in the config is not the persons who wrote the workflow, but the person who runs the workflow.