1 # Copyright (C) The Lightning Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
6 arv: "http://arvados.org/cwl#"
9 label: Make BED from VCF for regions passing a specified QUAL and GQ cutoff
16 ShellCommandRequirement: {}
18 arv:RuntimeConstraints:
26 label: Sample name of VCF
29 label: Filtering QUAL cutoff
32 label: Filtering GQ cutoff
36 label: BED for regions that pass cutoff
37 baseCommand: [bcftools, view]
40 valueFrom: "QUAL<$(inputs.qualcutoff) | QUAL='.' | FORMAT/GQ<$(inputs.gqcutoff)"
58 stdout: $(inputs.sample).bed