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
Copy file name to clipboardExpand all lines: src/faq.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ requirements:
58
58
59
59
## Rename an output file
60
60
61
-
This example shows how you can change the name an output file
61
+
This example shows how you can change the name of an output file
62
62
from the default name given to it by a tool:
63
63
64
64
```yaml
@@ -191,7 +191,7 @@ inputs:
191
191
<a name="enuminputs"></a>
192
192
## Enum Inputs ⚜️
193
193
194
-
For commandline flags that require a specific input as the argument an enum type can be declared in CWL. **Specifying null here is known as long form style. It does the same thing as the question mark on the other inputs.**
194
+
For command-line flags that require a specific input as the argument, an enum type can be declared in CWL. **Specifying null here is known as long form style. It does the same thing as the question mark on the other inputs.**
195
195
196
196
```yaml
197
197
Format:
@@ -211,7 +211,7 @@ Format:
211
211
<a name="recordinputs"></a>
212
212
## Record Inputs 📀
213
213
214
-
For commandline flags that are either **mutually exclusive** or **dependent** a special record type can be defined. You can also specify null here to create optional inputs.
214
+
For command-line flags that are either **mutually exclusive** or **dependent**, a special record type can be defined. You can also specify null here to create optional inputs.
215
215
216
216
```yaml
217
217
#Using record inputs to create mutually exclusive inputs
@@ -304,7 +304,7 @@ input:
304
304
305
305
`cwltool`does not allow some characters in filenames by default.
306
306
307
-
For example, the filename is `a space is here.txt` includes 3 space characters.
307
+
For example, the filename `a space is here.txt` includes 3 space characters.
308
308
309
309
```console
310
310
ERROR Workflow error, try again with --debug for more information:
@@ -364,7 +364,7 @@ inputs:
364
364
```
365
365
366
366
367
-
Fix this error is change `-` (hyphen) to `_` (underscore)
367
+
To fix this error, change `-` (hyphen) to `_` (underscore)
368
368
369
369
```cwl
370
370
valueFrom: $(inputs.sample_input)
@@ -377,7 +377,7 @@ inputs:
377
377
# ^ changed here
378
378
```
379
379
380
-
If is not possible to change the input identifier, then you can use an alternative CWL Parameter Reference syntax:
380
+
If it is not possible to change the input identifier, then you can use an alternative CWL Parameter Reference syntax:
0 commit comments