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

The details in generating <PDBid>_nowat.pdb #28

Open
SanFran-Me opened this issue Jul 30, 2023 · 3 comments
Open

The details in generating <PDBid>_nowat.pdb #28

SanFran-Me opened this issue Jul 30, 2023 · 3 comments

Comments

@SanFran-Me
Copy link

In the PDBbind2016 data directory, I see the following files that seems to be used in your training project.
<PDBid>_nowat.pdb -- Receptor structure with all HETATOMS removed

I was wondering how to generate thenowat.pdbforpocket.pdbfiles in PDBbind 2019 dataset, and the ChatGPT told me to use:
for file in *.pdb; do gnina -i "$file" -o "${file%.pdb}_nowat.pdb" --autobox_ligand ""; done

I am not sure if this is the same way of your project. If so, even though it works, it might have some differences with your dataset. So I am here to ask your methods to generate 'nowat.pdb' in details.

@dkoes
Copy link
Contributor

dkoes commented Jul 30, 2023

You generate a pdb file without HETATM records by removing all the HETATM records from the file. This is not something gnina does. You can use your favorite cheminformatic toolkit or just run grep -v HETATM.

@SanFran-Me
Copy link
Author

You generate a pdb file without HETATM records by removing all the HETATM records from the file. This is not something gnina does. You can use your favorite cheminformatic toolkit or just run grep -v HETATM.

Yeah, grep -v HETATM works. But some amino acids modified by phosphorylation will also be deleted(like T[THR:phosphorylated]), how to avoid these occasions when deleting waters and ions in .pdb file ?

@dkoes
Copy link
Contributor

dkoes commented Aug 10, 2023

Use your favorite cheminformatic tool. PyMOL, ProDY, etc can all do this sort of thing. This is outside the scope of gnina.

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

2 participants