Skip to content

Commit

Permalink
added dependencies to arch
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonMFernando-NOAA committed Feb 10, 2025
1 parent 3d6c13e commit f217de0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2333,6 +2333,14 @@ def arch_vrfy(self):
if self.run in ['gfs']:
dep_dict = {'type': 'metatask', 'name': f'{self.run}_ice_prod'}
deps.append(rocoto.add_dependency(dep_dict))
if self.options['do_wave']:
dep_dict = {'type': 'metatask', 'name': f'{self.run}_wavepostsbs'}
deps.append(rocoto.add_dependency(dep_dict))
dep_dict = {'type': 'task', 'name': f'{self.run}_wavepostpnt'}
deps.append(rocoto.add_dependency(dep_dict))
if self.options['do_wave_bnd']:
dep_dict = {'type': 'task', 'name': f'{self.run}_wavepostbndpnt'}
deps.append(rocoto.add_dependency(dep_dict))

dependencies = rocoto.create_dependency(dep_condition='and', dep=deps)

Expand Down

0 comments on commit f217de0

Please sign in to comment.