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

Fix broken nextflow config template

#30
parent 9503c59f
No related branches found
No related tags found
No related merge requests found
...@@ -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