mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nlp.git
				synced 2025-10-31 17:22:47 +00:00 
			
		
		
		
	Fix race condition
This commit is contained in:
		
							
								
								
									
										4
									
								
								nlp
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								nlp
									
									
									
									
									
								
							| @@ -89,6 +89,7 @@ class NLPPipeline(WorkflowRunner): | ||||
|         ' # vrt creation                                   # | ||||
|         ' ################################################## | ||||
|         ''' | ||||
|         vrt_creation_tasks = [] | ||||
|         for i, job in enumerate(self.jobs): | ||||
|             output_file = os.path.join(job.output_dir, '{}.vrt'.format(job.name))  # noqa | ||||
|             nlp_file = os.path.join(job.output_dir, '{}.nopaque-stand-off.json'.format(job.name))  # noqa | ||||
| @@ -99,6 +100,7 @@ class NLPPipeline(WorkflowRunner): | ||||
|             deps = 'nlp_-_{}'.format(i) | ||||
|             lbl = 'vrt_creation_-_{}'.format(i) | ||||
|             task = self.addTask(command=cmd, dependencies=deps, label=lbl) | ||||
|             vrt_creation_tasks.append(task) | ||||
|  | ||||
|         ''' | ||||
|         ' ################################################## | ||||
| @@ -116,7 +118,7 @@ class NLPPipeline(WorkflowRunner): | ||||
|             cmd += ' -i "*.vrt" "*.json"' | ||||
|             cmd += ' && ' | ||||
|             cmd += 'cd -' | ||||
|             deps = nlp_tasks | ||||
|             deps = vrt_creation_tasks | ||||
|             lbl = 'zip_creation' | ||||
|             task = self.addTask(command=cmd, dependencies=deps, label=lbl) | ||||
|             zip_creation_tasks.append(task) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user