浏览代码

readme

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

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



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


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


runtime { runtime {
} }


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

正在加载...
取消
保存