-
-
Notifications
You must be signed in to change notification settings - Fork 231
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
Changed outputSource refScope from 0 to 1 #1714
Conversation
c303ca4
to
b5eb57f
Compare
Codecov Report
@@ Coverage Diff @@
## main #1714 +/- ##
===========================================
- Coverage 66.58% 54.54% -12.04%
===========================================
Files 89 45 -44
Lines 15850 7950 -7900
Branches 4188 2059 -2129
===========================================
- Hits 10553 4336 -6217
+ Misses 4207 3090 -1117
+ Partials 1090 524 -566 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
b5eb57f
to
c1b56b1
Compare
c1b56b1
to
9fc86ba
Compare
9fc86ba
to
2b52520
Compare
This change allows a corret id reference in the outputSource field of WorkflowOutputParameter objects
2b52520
to
9407590
Compare
This PR allows to unify the behaviour of cwlVersion: v1.2
class: Workflow
id: a
inputs:
a: int
outputs:
a:
type: int
outputSource: a
steps: [] In this case, with {
"class": "Workflow",
"cwlVersion": "v1.2",
"id": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a",
"inputs": [
{
"id": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a/a",
"type": "int"
}
],
"outputs": [
{
"id": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a/a",
"outputSource": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a/a",
"type": "int"
}
],
"steps": []
} while with the {
"class": "Workflow",
"cwlVersion": "v1.2",
"id": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a",
"inputs": [
{
"id": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a/a",
"type": "int"
}
],
"outputs": [
{
"id": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a/a",
"outputSource": "file:///home/glassofwhiskey/Projects/streamflow/source/examples/a.cwl#a/a/a",
"type": "int"
}
],
"steps": []
} The |
Closing; this will get fixed in CWL v1.2.1 |
This change allows a corret id reference in the outputSource field of
WorkflowOutputParameter
objects