We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677805d commit c809a5dCopy full SHA for c809a5d
pybnf/algorithms.py
@@ -237,6 +237,10 @@ def _copy_log_files(self, failed_logs_dir):
237
def run_simulation(self, debug=False, failed_logs_dir=''):
238
"""Runs the simulation and reads in the result"""
239
240
+ # Force absolute path for failed_logs_dir
241
+ if len(failed_logs_dir) > 0 and failed_logs_dir[0] != '/':
242
+ failed_logs_dir = self.home_dir + '/' + failed_logs_dir
243
+
244
# The check here is in case dask decides to run the same job twice, both of them can complete.
245
made_folder = False
246
failures = 0
0 commit comments