ソースを参照

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
>>>


読み込み中…
キャンセル
保存