瀏覽代碼

删除 'tasks/samtools_index.wdl'

master
chenqingwang 3 年之前
父節點
當前提交
e11fbd109e
共有 1 個檔案被更改,包括 0 行新增25 行删除
  1. +0
    -25
      tasks/samtools_index.wdl

+ 0
- 25
tasks/samtools_index.wdl 查看文件

@@ -1,25 +0,0 @@
task samtools_index {
File bam_file
String docker
String cluster_config
String disk_size
String clean_bam_name = basename(bam_file)
command <<<
samtools index --help
samtools index ${bam_file} ${clean_bam_name}.bai
cp ${bam_file} ./${clean_bam_name}
>>>

runtime {
docker:docker
cluster: cluster_config
systemDisk: "cloud_ssd 40"
dataDisk: "cloud_ssd " + disk_size + " /cromwell_root/"
}
output {
File bai = "${clean_bam_name}.bai"
File bam = "${clean_bam_name}"
}
}

Loading…
取消
儲存