浏览代码

readme

master
LUYAO REN 5 年前
父节点
当前提交
c322ea0a85
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. +2
    -4
      tasks/multiqc.wdl

+ 2
- 4
tasks/multiqc.wdl 查看文件

@@ -24,15 +24,14 @@ task multiqc {

cp ${sep=" " read1_zip} ${sep=" " read2_zip} /cromwell_root/tmp/fastqc
cp ${sep=" " txt1} ${sep=" " txt2} /cromwell_root/tmp/fastqscreen
cp ${sep=" " zip} /cromwell_root/tmp/bamqc
cp ${sep=" " summary} /cromwell_root/tmp/benchmark
for i in `ls /cromwell_root/tmp/bamqc`
for i in ${sep=" " zip}
do
tar -zxvf $i -C /cromwell_root/tmp/bamqc
done

multiqc /cromwell_root/tmp/
ls > filelist
>>>

runtime {
@@ -43,7 +42,6 @@ task multiqc {
}

output {
File filelist = "filelist"
File multiqc_html = "multiqc_report.html"
Array[File] multiqc_txt = glob("multiqc_data/*")
}

正在加载...
取消
保存