瀏覽代碼

删除 'bcftools_concat.wdl'

master
meng 2 年之前
父節點
當前提交
b7d8d041a8
共有 1 個文件被更改,包括 0 次插入33 次删除
  1. +0
    -33
      bcftools_concat.wdl

+ 0
- 33
bcftools_concat.wdl 查看文件

@@ -1,33 +0,0 @@
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
bcftools index -t ${sample_id}_stralka.vcf.gz

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

Loading…
取消
儲存