Skip to content
Snippets Groups Projects
Commit 027649b1 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Merge branch 'bugfix/30-fix-missing-closing-quote-in-nextflow-config-template' into 'development'

Resolve "Fix missing closing quote in nextflow config template"

Closes #30

See merge request !27
parents 9503c59f d428fcd7
No related branches found
No related tags found
2 merge requests!69Delete dev branch,!27Resolve "Fix missing closing quote in nextflow config template"
Pipeline #27830 passed
...@@ -5,14 +5,14 @@ tower { ...@@ -5,14 +5,14 @@ tower {
report { report {
enabled = ${ str(output_bucket is None)} enabled = ${ str(output_bucket is None)}
% if output_bucket is not None: % if output_bucket is not None:
file = "s3://${ output_bucket }/report-${ execution_id.hex }.html file = "s3://${ output_bucket }/report-${ execution_id.hex }.html"
% endif % endif
} }
timeline { timeline {
enabled = ${ str(output_bucket is None)} enabled = ${ str(output_bucket is None)}
% if output_bucket is not None: % if output_bucket is not None:
file = "s3://${ output_bucket }/timeline-${ execution_id.hex }.html file = "s3://${ output_bucket }/timeline-${ execution_id.hex }.html"
% endif % endif
} }
......
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