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

fix

parent 76932776
No related branches found
No related tags found
No related merge requests found
Pipeline #13378 passed with stage
in 58 seconds
......@@ -102,7 +102,10 @@ class Nextflow_File(Nextflow_Building_Blocks):
if(self.first_file):
return self.workflow.get_processes_annotation()
else:
return self.origin.get_processes_annotation()
if(self.origin==None):
return None
else:
return self.origin.get_processes_annotation()
def get_display_info(self):
if (self.first_file):
......
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