Skip to content
Snippets Groups Projects
Commit 57079740 authored by Cats's avatar Cats
Browse files

fix missing space after toolcommand

parent a8523586
No related branches found
No related tags found
1 merge request!33fix missing space after toolcommand
...@@ -355,7 +355,7 @@ task ValidateFastq { ...@@ -355,7 +355,7 @@ task ValidateFastq {
command { command {
set -e -o pipefail set -e -o pipefail
${preCommand} ${preCommand}
${toolCommand}\ ${toolCommand} \
--fastq1 ${fastq1} \ --fastq1 ${fastq1} \
${"--fastq2 " + fastq2} ${"--fastq2 " + fastq2}
} }
...@@ -386,7 +386,7 @@ task ValidateVcf { ...@@ -386,7 +386,7 @@ task ValidateVcf {
command { command {
set -e -o pipefail set -e -o pipefail
${preCommand} ${preCommand}
${toolCommand}\ ${toolCommand} \
-i ${vcfFile} \ -i ${vcfFile} \
-R ${refFasta} -R ${refFasta}
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment