浏览代码

remove ? of tast value

master
songyq 4 年前
父节点
当前提交
8bc86e5d07
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      tasks/mergefq.wdl

+ 1
- 1
tasks/mergefq.wdl 查看文件

@@ -9,7 +9,7 @@ task mergefq {

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

正在加载...
取消
保存