Skip to content

Commit

Permalink
parser parses Orca input file
Browse files Browse the repository at this point in the history
  • Loading branch information
JintaoWu98 committed Oct 2, 2024
1 parent 0cef23a commit babdbf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ def parse_xyz_from_file(path: str) -> Optional[Dict[str, tuple]]:
splits = line.split()
if len(splits) == 2 and all([s.isdigit() for s in splits]):
start_parsing = True
elif 'out' in file_extension or 'log' in file_extension:
elif 'out' in file_extension or 'log' in file_extension or 'in' in file_extension:
xyz = parse_geometry(path)
elif "yml" in file_extension or 'yaml' in file_extension:
content = read_yaml_file(path=path)
Expand Down

0 comments on commit babdbf9

Please sign in to comment.