瀏覽代碼

repair optional parameter

master
songyq 4 年之前
父節點
當前提交
722626eabb
共有 1 個檔案被更改,包括 4 行新增3 行删除
  1. +4
    -3
      tasks/mergefq.wdl

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

@@ -9,10 +9,11 @@ task mergefq {

command <<<
set -euo pipefail
if [ ${fq3} != "" ]; then
cat ${fq1} ${fq2} > ${fq_m}
if [ ${fq3} = "" ]
then
cat ${fq1} ${fq2} > ${fq_m}
else
cat ${fq1} ${fq2} ${fq3} > ${fq_m}
cat ${fq1} ${fq2} ${fq3} > ${fq_m}
fi
>>>


Loading…
取消
儲存