Skip to content

Commit e93b038

Browse files
author
Peter Amstutz
committed
Add missing file
1 parent e298bdc commit e93b038

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

tests/Process.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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: "../schema_salad/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

0 commit comments

Comments
 (0)