Skip to content
Snippets Groups Projects
Commit 78b85f99 authored by George Marchment's avatar George Marchment
Browse files

Remove an "s" in emit

parent 8fb86f17
No related branches found
No related tags found
No related merge requests found
Pipeline #14238 failed with stage
in 2 minutes and 25 seconds
...@@ -544,7 +544,7 @@ class Process(Nextflow_Building_Blocks): ...@@ -544,7 +544,7 @@ class Process(Nextflow_Building_Blocks):
def convert_output_code_to_DSL2(self): def convert_output_code_to_DSL2(self):
code = self.output_code code = self.output_code
code = process_2_DSL2(code) code = process_2_DSL2(code)
code = code.replace(" into ", ", emits: ") code = code.replace(" into ", ", emit: ")
code = code.replace(" mode flatten", "") code = code.replace(" mode flatten", "")
return code return code
......
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