blob: fc33a307fd430ef412ee9a5aec3b260fb966bc49 (
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
|
#!/usr/bin/env cwl-runner
class: CommandLineTool
cwlVersion: v1.1
hints:
DockerRequirement:
dockerPull: "quay.io/biocontainers/bcftools:1.10.2--hd2cd319_0"
baseCommand: bcftools
arguments:
- concat
- -Ou
- -o
- $(inputs.output_name)
- $(inputs.bcf_files)
inputs:
- id: output_name
type: string
default: "merged.bcf"
- id: bcf_files
type: File[]
outputs:
- id: merged_bcf
type: File
outputBinding:
glob: "$(inputs.output_name)"
|