Skip to content

Commit

Permalink
add tab to beautify the generated nextflow configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cpauvert committed Jul 5, 2024
1 parent 6b9772e commit ace94bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def append_config_block(nf_config="nextflow.config", scope=None, **kwargs):
with open(nf_config, "a") as f:
f.write(scope.rstrip() + "{" + "\n")
for k in kwargs:
f.write(f"{k} = {kwargs[k]}\n")
f.write(f"\t{k} = {kwargs[k]}\n")
f.write("}\n")


Expand Down

0 comments on commit ace94bf

Please sign in to comment.