From 57079740bd652a5aa6d44aad954cb54633bf686b Mon Sep 17 00:00:00 2001 From: DavyCats <davycats.dc@gmail.com> Date: Mon, 23 Jul 2018 10:38:09 +0200 Subject: [PATCH] fix missing space after toolcommand --- biopet.wdl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biopet.wdl b/biopet.wdl index a1bf3d7..ec29318 100644 --- a/biopet.wdl +++ b/biopet.wdl @@ -355,7 +355,7 @@ task ValidateFastq { command { set -e -o pipefail ${preCommand} - ${toolCommand}\ + ${toolCommand} \ --fastq1 ${fastq1} \ ${"--fastq2 " + fastq2} } @@ -386,7 +386,7 @@ task ValidateVcf { command { set -e -o pipefail ${preCommand} - ${toolCommand}\ + ${toolCommand} \ -i ${vcfFile} \ -R ${refFasta} } -- GitLab