Skip to content

Commit 2ac86ae

Browse files
committed
Allow ARC to call mockter as a TS guess method
1 parent db03143 commit 2ac86ae

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
@@ -1615,7 +1615,8 @@ def spawn_ts_jobs(self):
16151615
if method in all_families_ts_adapters or \
16161616
(rxn.family is not None
16171617
and rxn.family in list(ts_adapters_by_rmg_family.keys())
1618-
and method in ts_adapters_by_rmg_family[rxn.family]):
1618+
and method in ts_adapters_by_rmg_family[rxn.family]) \
1619+
or 'mock' in method:
16191620
self.run_job(job_type='tsg',
16201621
job_adapter=method,
16211622
reactions=[rxn],

0 commit comments

Comments
 (0)