File: recursive.yml

package info (click to toggle)
cwl-utils 0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,164 kB
  • sloc: python: 88,875; makefile: 141; javascript: 91
file content (26 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Contains records and intra-file type reference
# You can't have an enum in a user type

- name: sample_meta
  type: record
  fields:
    - name: sample
      type: ["null", string]
    - name: species
      type: string

- name: file_with_sample_meta
  type: record
  fields:
    - name: file
      type: File
    - name: meta
      type: sample_meta

- name: info_with_sample_meta
  type: record
  fields:
    comment: 
      type: string
    meta: 
      type: sample_meta