Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function read_coordinates() in extract_coords_into_inp_xyz.py fails #42

Open
wverastegui opened this issue Oct 14, 2024 · 0 comments
Open
Assignees

Comments

@wverastegui
Copy link
Collaborator

wverastegui commented Oct 14, 2024

It fails when using the following input file:
scores_lower_than_200_mol_per_class_name_smiles.zip

It works with the older version - written below:

def read_coordinates(n_atoms, gamess_output, line_number):
    start, end = compute_start_end_indices(n_atoms, line_number, 4)
    data = []
    for i in range(start, end):
    data.append(gamess_output[i].split())
    atomic_number = []
    element_symbol = []
    x_coord = []
    y_coord = []
    z_coord = []
    for line in data:
        element_symbol.append(line[0])
        atomic_number.append(line[1])
        x_coord.append(line[2])
        y_coord.append(line[3])
        z_coord.append(line[4])
    return element_symbol,x_coord,y_coord,z_coord
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant