You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Setting `self`-based input bindings for optional inputs
137
+
## How can I set `self`-based input bindings for optional inputs?
138
138
139
139
Currently, `cwltool` can't cope with missing optional inputs if their
140
140
input binding makes use of `self`.
@@ -447,7 +447,9 @@ those Docker format containers using the Singularity engine. Directly
447
447
specifying a Singularity format container is not part of the CWL standards.
448
448
449
449
## How outputBinding.glob works
450
-
The `outputBinding` section describes how to set the value of each output parameter. The `glob` field is used to return all files/pathnames that match a specific pattern. The value of the glob field is the `output directory` Wildcard characters can be used in the filenames when searching for files. The wildcard characters can either be an asterisk `*`, a question mark `?` or a range `[]`
450
+
The `outputBinding` section describes how to set the value of each output parameter. The `glob` field is used to return all files/pathnames that match a specific pattern. The value of the glob field is the `output directory`.
451
+
Glob's pattern rules abide to standard Unix path expansion rules. According to benchmarks, it is also expected to be faster than other methods for matching pathnames in directories.
452
+
Wildcard characters can be used in the filenames when searching for files. The wildcard characters can either be an asterisk `*`, a question mark `?` or a range `[]`
0 commit comments