浏览代码

删除 'tasks/qualimapBAMqc.wdl'

master
chenqingwang 3 年前
父节点
当前提交
a5125e89fe
共有 1 个文件被更改,包括 0 次插入28 次删除
  1. +0
    -28
      tasks/qualimapBAMqc.wdl

+ 0
- 28
tasks/qualimapBAMqc.wdl 查看文件

@@ -1,28 +0,0 @@
task qualimapBAMqc {
File bam
String bamname = basename(bam,".bam")
String docker
String cluster_config
String disk_size

command <<<
set -o pipefail
set -e
nt=$(nproc)
/opt/qualimap/qualimap bamqc -bam ${bam} -outformat PDF:HTML -nt $nt -outdir ${bamname}_bamqc --java-mem-size=32G
tar -zcvf ${bamname}_bamqc_qualimap.zip ${bamname}_bamqc
>>>

runtime {
docker:docker
cluster:cluster_config
systemDisk:"cloud_ssd 40"
dataDisk:"cloud_ssd " + disk_size + " /cromwell_root/"
}

output {
File bamqc_zip = "${bamname}_bamqc_qualimap.zip"
}
}

正在加载...
取消
保存