-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
Adding more text for exclusive vs inclusive parameters and added diagram #384
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -190,11 +190,21 @@ You can specify arrays of arrays, arrays of records, and other complex types. | |
|
||
## Inclusive and Exclusive Inputs | ||
|
||
Sometimes an underlying tool has several arguments that must be provided | ||
together (they are dependent) or several arguments that cannot be provided | ||
together (they are exclusive). You can use records and type unions to group | ||
Sometimes an underlying tool has several arguments that must all be provided | ||
together (they are inclusive/dependent) or several arguments that cannot be provided | ||
together, only one of the arguments can be provided (they are exclusive). You can use records and type unions to group | ||
parameters together to describe these two conditions. | ||
|
||
```{image} /_static/images/diagrams/inclusive_v_exclusive.png | ||
:name: inclusive_v_exclusive-diagram | ||
:width: 600px | ||
:align: center | ||
``` | ||
|
||
|
||
With cwltool, if not all inclusive arguments are provided, an error is thrown. | ||
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. In other pages & paragraphs cwltool appears formatted as |
||
If multiple exclusive arguments are provided, the first one is used and the rest are ignored. | ||
|
||
```{literalinclude} /_includes/cwl/inputs/record.cwl | ||
:language: cwl | ||
:caption: "`record.cwl`" | ||
|
@@ -212,7 +222,7 @@ parameters together to describe these two conditions. | |
:emphasize-lines: 6-7 | ||
``` | ||
|
||
In the first example, you can't provide `itemA` without also providing `itemB`. | ||
In the first example, you can't provide `itemA` without also providing `itemB`, or an error is thrown. This is because they are inclusive (dependent) parameters. If you provide one, you must provide the other. | ||
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. Probably better to break this line to make it shorter like the other ones (regardless of This is useful to visualize diffs with git or GitHub UI: https://sembr.org/ |
||
|
||
```{literalinclude} /_includes/cwl/inputs/record-job2.yml | ||
:language: yaml | ||
|
@@ -230,8 +240,8 @@ $ cat output.txt | |
-A one -B two -C three | ||
``` | ||
|
||
In the second example, `itemC` and `itemD` are exclusive, so only the first | ||
matching item (`itemC`) is added to the command line and remaining item (`itemD`) is ignored. | ||
In the second example, `itemC` and `itemD` are exclusive, but `record-job2.yml` provides both arguments, so only the first | ||
matching item provided (`itemC`) is added to the command line and remaining item (`itemD`) is ignored. | ||
|
||
```{literalinclude} /_includes/cwl/inputs/record-job3.yml | ||
:language: yaml | ||
|
@@ -249,8 +259,8 @@ $ cat output.txt | |
-A one -B two -D four | ||
``` | ||
|
||
In the third example, only `itemD` is provided, so it appears on the | ||
command line. | ||
In the third example, `record-job3.yml` only provides `itemD`, so `itemD` is what appears on the | ||
command line. | ||
|
||
### Exclusive Input Parameters with Expressions | ||
|
||
|
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 the extra blank lines are not necessary. This is not really important, but we tried to remove unnecessary blank lines before, so probably better if we can avoid adding extra lines that are not necessary.