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.
2 parents 143ec13 + 8d51e07 commit 05e5ab6Copy full SHA for 05e5ab6
arc/job/adapters/xtb_adapter.py
@@ -268,7 +268,9 @@ def write_input_file(self) -> None:
268
269
uhf_charge = f'--uhf {uhf} --chrg {self.charge}'
270
self.long_command = f'{self.command} mol.sdf{directives} {uhf_charge} > {output_filenames[self.job_adapter]}\n'
271
-
+
272
+ if self.species[0].mol is None:
273
+ self.species[0].mol_from_xyz()
274
if not self.is_opt_ts_job() and self.species[0].mol is not None:
275
species_to_sdf_file(species=self.species[0], path=self.sdf_path)
276
with open(os.path.join(self.local_path, input_filenames[self.job_adapter]), 'w') as f:
0 commit comments