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 {
set -e -o pipefail
${preCommand}
${toolCommand} \
${"-r" + refRefflat} \
${"-g" + gtfFile} \
${"-r " + refRefflat} \
${"-g " + gtfFile} \
-R ${refFasta}
}
......@@ -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}
}
......
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