浏览代码

添加 'tasks/bcftools_concat.wdl'

master
meng 2 年前
父节点
当前提交
3a2c2097ad
共有 1 个文件被更改,包括 31 次插入0 次删除
  1. +31
    -0
      tasks/bcftools_concat.wdl

+ 31
- 0
tasks/bcftools_concat.wdl 查看文件

@@ -0,0 +1,31 @@
task bcftools {
File ref_dir
String fasta
File vcf_indels
File vcf_snvs
String sample_id
String docker
String cluster_config
String disk_size

command <<<
set -o pipefail
set -e
nt=$(nproc)
bcftools concat -a ${vcf_indels} ${vcf_snvs} -Oz -o ${sample_id}_stralka.vcf.gz

>>>
runtime {
docker: docker
cluster: cluster_config
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
}
output {
File norm_vcf = "${sample_id}_stralka.vcf.gz"
}
}

正在加载...
取消
保存