Skip to content
Snippets Groups Projects
Commit c0e6c659 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Fix failPreExecutionRun error collection

parent 96fc2b71
1 merge request!84Fix failPreExecutionRun error collection
Pipeline #9770 passed with stages
in 4 minutes and 26 seconds
......@@ -38,6 +38,7 @@
* Add test for DNAnexus env
* Add test for AWS env
* Fix fetch fastq count
* Fix failPreExecutionRun error collection
*Known Bugs*
* Override params (inputBag, fastq, species) aren't checked for integrity
......
......@@ -2715,19 +2715,19 @@ process failPreExecutionRun {
errorDetails=""
if [ ${fastqCountError} == true ]
then
errorDetails=\$(echo ${fastqCountError_details}"\\n")
errorDetails=\$(echo "${fastqCountError_details}"\\n")
elif [ ${fastqReadError} == true ]
then
errorDetails=\$(echo \$(errorDetails)${fastqReadError_details}"\\n")
errorDetails=\$(echo "\${errorDetails}${fastqReadError_details}\\n")
elif [ ${fastqFileError} == true ]
then
errorDetails=\$(echo \$(errorDetails)${fastqFileError_details}"\\n")
errorDetails=\$(echo "\${errorDetails}${fastqFileError_details}\\n")
elif [ ${seqtypeError} == true ]
then
errorDetails=\$(echo \$(errorDetails)${seqtypeError_details}"\\n")
errorDetails=\$(echo "\${errorDetails}${seqtypeError_details}\\n")
elif [ ${speciesError} == true ]
then
errorDetails=\$(echo \$(errorDetails)${speciesError_details}"\\n")
errorDetails=\$(echo "\${errorDetails}${speciesError_details}\\n")
fi
echo LOG: searching for workflow RID - BICF mRNA ${workflow.manifest.version} >> ${repRID}.failPreExecutionRun.log
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment