Skip to content

Commit

Permalink
nope, use an enum instead
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Jun 14, 2016
1 parent 24a611d commit a5a7516
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions draft-4/Process.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,9 @@ $graph:
# type: ["null", long]
# doc: Optional directory size.

- name: stdout
type: record
- name: CWLStdOut
type: enum
symbols: [ stdout ]
doc: |
Only valid as a `type` for an output.
Expand All @@ -165,8 +166,9 @@ $graph:
If there is no `stdout` name provided, a random filename will be created.
- name: stderr
type: record
- name: CWLStdErr
type: enum
symbols: [ stderr ]
doc: |
Only valid as a `type` for an output.
Expand Down Expand Up @@ -265,8 +267,8 @@ $graph:
type:
- "null"
- "#CWLType"
- "https://w3id.org/cwl/cwl#stdout"
- "https://w3id.org/cwl/cwl#stderr"
- "#CWLStdOut"
- "#CWLStdErr"
- "sld:RecordSchema"
- "sld:EnumSchema"
- "sld:ArraySchema"
Expand Down

0 comments on commit a5a7516

Please sign in to comment.