aboutsummaryrefslogtreecommitdiff
path: root/workflows/phylogeny/augur.cwl
blob: 46763335aee918400f98f6719cfb200e821e2d07 (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
34
35
36
#!/usr/bin/env cwl-runner

cwlVersion: v1.1

class: CommandLineTool
baseCommand: bash

requirements:
  InitialWorkDirRequirement:
    listing:
      - $(inputs.dataDir)

inputs:
    nextstrain_bash_script:
        type: File
        inputBinding:
            position: 1

    newick_tree_2:
        type: File
        inputBinding:
            position: 2

    metadata_newick:
        type: File
        inputBinding:
            position: 3

    dataDir:
        type: Directory

outputs:
    newick_json:
        type: File
        outputBinding:
            glob: 'covid.json'