Skip to content
Snippets Groups Projects
Unverified Commit f02b671c authored by Ruben Vorderman's avatar Ruben Vorderman Committed by GitHub
Browse files

Merge pull request #33 from biowdl/fix_validateFastq

fix missing space after toolcommand
parents a8523586 788e0553
No related branches found
No related tags found
No related merge requests found
...@@ -324,8 +324,8 @@ task ValidateAnnotation { ...@@ -324,8 +324,8 @@ task ValidateAnnotation {
set -e -o pipefail set -e -o pipefail
${preCommand} ${preCommand}
${toolCommand} \ ${toolCommand} \
${"-r" + refRefflat} \ ${"-r " + refRefflat} \
${"-g" + gtfFile} \ ${"-g " + gtfFile} \
-R ${refFasta} -R ${refFasta}
} }
...@@ -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