浏览代码

add heatmap

master
YaqingLiu 4 年前
父节点
当前提交
471c711429
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. +4
    -3
      tasks/export.wdl

+ 4
- 3
tasks/export.wdl 查看文件

String disk_size String disk_size


command <<< command <<<
# mkdir -p /cromwell_root/tmp/cnvkit
cp -r ${sep=" " results} . cp -r ${sep=" " results} .
# cd /cromwell_root/tmp/cnvkit
# this version app just provides seg
# seg
cnvkit.py export seg *.cns -o ${sample_id}.seg cnvkit.py export seg *.cns -o ${sample_id}.seg
# heatmap
cnvkit.py heatmap *.cns -o ${sample_id}.heatmap
>>> >>>
runtime { runtime {


output { output {
File seg = "${sample_id}.seg" File seg = "${sample_id}.seg"
File heatmap = "${sample_id}.heatmap"
} }
} }

正在加载...
取消
保存