Skip to content

Commit e78083d

Browse files
committed
Allow ARC to call mockter as a TS guess method
1 parent 8139c15 commit e78083d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

arc/scheduler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,8 @@ def spawn_ts_jobs(self):
16051605
if method in all_families_ts_adapters or \
16061606
(rxn.family is not None
16071607
and rxn.family in list(ts_adapters_by_rmg_family.keys())
1608-
and method in ts_adapters_by_rmg_family[rxn.family]):
1608+
and method in ts_adapters_by_rmg_family[rxn.family]) \
1609+
or 'mock' in method:
16091610
self.run_job(job_type='tsg',
16101611
job_adapter=method,
16111612
reactions=[rxn],

0 commit comments

Comments
 (0)