Explorar el Código

repair optional parameter

master
songyq hace 4 años
padre
commit
722626eabb
Se han modificado 1 ficheros con 4 adiciones y 3 borrados
  1. +4
    -3
      tasks/mergefq.wdl

+ 4
- 3
tasks/mergefq.wdl Ver fichero

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


Cargando…
Cancelar
Guardar