Skip to content

Commit

Permalink
change the suffix to '_operons'
Browse files Browse the repository at this point in the history
... per code review feedback.

And bump the validation data tasks up to priority 12 to support their downstream tasks, now that we know the added dependency links fixed the bug.

Any ideas what could cause the exception `ModuleNotFoundError: No module named 'tmpqliqwytx.m60156961fb5c4d3d33cb0876d617bf81987f03cf4a6533e8b2ceef71f39f139c'`?

There were warnings about .aesara cache files "gone from the file system". Bugs in Aesara's caching when run from multiple processes? This (in addition to Issue #1154) is more incentive to try using JAX instead or updating to a newer Aesara release.

(I'll revert `ecoli-pull-request.sh` before merging.)
  • Loading branch information
1fish2 committed Oct 1, 2021
1 parent c759a73 commit 60aba60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runscripts/fireworks/fw_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def build_wcm(self, operons: str) -> Firework:
file compression).
"""
self.operons = operons
self.name_suffix = '_poly' if OPERONS == 'both' and operons == 'on' else ''
self.name_suffix = '_operons' if OPERONS == 'both' and operons == 'on' else ''

log_info(f"\n--- Building a WCM workflow with {operons=} ---")
self.make_output_directories()
Expand Down Expand Up @@ -528,7 +528,7 @@ def build_wcm_firetasks(self) -> Firework:
InitRawValidationDataTask(
output=os.path.join(KB_DIRECTORY, constants.SERIALIZED_RAW_VALIDATION_DATA)),
name="InitValidationDataRaw",
priority=2)
priority=12)

# Raw validation data compression
fw_raw_validation_data_compression = None
Expand All @@ -549,7 +549,7 @@ def build_wcm_firetasks(self) -> Firework:
output_data=os.path.join(KB_DIRECTORY, constants.SERIALIZED_VALIDATION_DATA)),
name="InitValidationData",
parents=[fw_raw_validation_data, fw_init_raw_data],
priority=2)
priority=12)

# Full validation data compression
fw_validation_data_compression = None
Expand Down

0 comments on commit 60aba60

Please sign in to comment.