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

Fix fetch fastq count

parent 0d36671f
Branches
Tags
1 merge request!82Fix fetch fastq count
Pipeline #9769 passed with stages
in 4 minutes and 47 seconds
......@@ -37,6 +37,7 @@
* Change ambiguous species ci to wrong species
* Add test for DNAnexus env
* Add test for AWS env
* Fix fetch fastq count
*Known Bugs*
* Override params (inputBag, fastq, species) aren't checked for integrity
......@@ -44,7 +45,7 @@
* Check for outputBag in hatrac doesn't check for any uploaded by chaise
* CI container cache will fail if cache folder is not owned by CI runner user
* CI container cache will not error if container failed to pull
* CI (container cache, version collection, and unit tests) will not work correctly if containers reffered to in nextflow.config aren't prefixed perfectly with: "container = "
* CI (container cache, version collection, and unit tests) will not work correctly if containers referred to in nextflow.config aren't prefixed perfectly with: "container = "
* also, it is assumed that the containers are on dockerhub and don't have the "docker://" prefix
<hr>
......
......@@ -269,7 +269,8 @@ process getData {
then
echo -e "LOG: fetching replicate bdbag" >> ${repRID}.getData.log
fastqCount=\$(sh ${script_bdbagFetch} \${replicate::-13} ${repRID})
echo -e "LOG: fetched" >> ${repRID}.getData.log
fastqCount=\$(echo \${fastqCount} | tail -n1)
echo -e "LOG: \${fastqCount} fastqs fetched" >> ${repRID}.getData.log
else
echo -e "LOG: fastq override detected, not fetching fastqs" >> ${repRID}.getData.log
fastqCount="0"
......
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