aboutsummaryrefslogtreecommitdiff
path: root/workflows/pangenome-generate/relabel-seqs.cwl
blob: 2b780d4b485e932c77e752323e19669ab63c6beb (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
cwlVersion: v1.1
class: CommandLineTool
inputs:
  readsFA: File[]
  subjects: string[]
outputs:
  relabeledSeqs:
    type: File
    outputBinding:
      glob: relabeledSeqs.fasta
  originalLabels:
    type: File
    outputBinding:
      glob: originalLabels.ttl
requirements:
  InlineJavascriptRequirement: {}
  InitialWorkDirRequirement:
    listing:
      - entry: {$include: relabel-seqs.py}
        entryname: relabel-seqs.py
hints:
  DockerRequirement:
    dockerPull: commonworkflowlanguage/cwltool_module
stdout:
baseCommand: [python, relabel-seqs.py]