Skip to content
Snippets Groups Projects
Commit 296454d1 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Merge branch '118-error.status.detail' into 'develop'

Fix

Closes #118

See merge request !69
parents fca601e4 5056f2a6
Branches
Tags
2 merge requests!76Develop,!69Fix
Pipeline #9226 passed with stages
in 25 seconds
# v2.0.0rc01
# v2.0.0rc02
**User Facing**
* Endness metadata "Single Read" changed to "Single End" in data-hub, pipeline updated to handle (#110) ("Single Read" still acceptable for backwards compatibility)
* Strandedness metadata "yes"/"no" changed to boolean "t"/"f" in data-hub, pipeline updated to handle (#70) ("yes"/"no" still acceptable for backwards compatibility)
......@@ -24,6 +24,7 @@
* Merge data error pre-inference execution run upload/finalize to 1 process
* Change uploadOutputBag logic to change reuse hatrac file if alread exists (re-uses Output_Bag entry by reassigning Execution_Run RID) (#112)
* Add new CI py tests for override and integration
* Fix fastq file and species error status detail bub (#118)
*Known Bugs*
* Override params (inputBag, fastq, species) aren't checked for integrity
......
......@@ -2420,10 +2420,10 @@ process failPreExecutionRun {
errorDetails=\$(echo \$(errorDetails)${fastqReadError_details}"\\n")
elif [ ${fastqFileError} == true ]
then
errorDetails=\$(echo \$(errorDetails)${fastqReadError_details}"\\n")
errorDetails=\$(echo \$(errorDetails)${fastqFileError_details}"\\n")
elif [ ${speciesError} == true ]
then
errorDetails=\$(echo \$(errorDetails)${fastqReadError_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