Skip to content
Snippets Groups Projects
Commit 32e7a8bf authored by cagaser's avatar cagaser
Browse files

add SV task: bcftools.wdl

parent 2d5d02f2
No related branches found
No related tags found
No related merge requests found
version 1.0
task Bcf2Vcf {
input {
File bcf
String outputPath
}
command <<<
set -e
mkdir -p $(dirname ~{outputPath})
bcftools view ~{bcf} -O v -o ~{outputPath}
>>>
output {
File OutputVcf = "~{outputPath}"
}
runtime {
docker: "quay.io/biocontainers/bcftools:1.9--ha228f0b_3"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment