aboutsummaryrefslogtreecommitdiff
path: root/workflows/phylogeny/metadata.cwl
blob: 4ce6e17b6f4e047ec79156a841b53370872b15d5 (plain)
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
27
28
29
30
31
32
33
#!/usr/bin/env cwl-runner

cwlVersion: v1.1

class: CommandLineTool
baseCommand: python

inputs:
    main_py_script:
        type: File
        inputBinding:
            position: 1

    metadata:
        type: string
        inputBinding:
            position: 2

    coverage_matrix:
        type: File
        inputBinding:
            position: 3

    coverage_matrix_with_metadata:
        type: string
        inputBinding:
            position: 4

outputs:
    coverage_matrix_with_metadata_out:
        type: File
        outputBinding:
            glob: '*.metadata.tsv'