comparison env/lib/python3.7/site-packages/schema_salad/tests/Process.yml @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
comparison
equal deleted inserted replaced
4:79f47841a781 5:9b1c78e6ba9c
1 $base: "https://w3id.org/cwl/cwl#"
2
3 $namespaces:
4 cwl: "https://w3id.org/cwl/cwl#"
5 sld: "https://w3id.org/cwl/salad#"
6
7 $graph:
8
9 - $import: "../metaschema/metaschema_base.yml"
10
11 - name: InputBinding
12 type: record
13 abstract: true
14 fields:
15 - name: loadContents
16 type:
17 - "null"
18 - boolean
19 jsonldPredicate: "cwl:loadContents"
20 doc: |
21 Only valid when `type: File` or is an array of `items: File`.
22
23 Read up to the first 64 KiB of text from the file and place it in the
24 "contents" field of the file object for use by expressions.
25
26 - name: InputRecordField
27 type: record
28 extends: "sld:RecordField"
29 fields:
30 - name: inputBinding
31 type: [ "null", "#InputBinding" ]
32 jsonldPredicate: "cwl:inputBinding"
33
34 - name: Blurb
35 type: record
36 extends: InputBinding