-
Notifications
You must be signed in to change notification settings - Fork 662
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
Doc for keyword *bonds* of PDBWriter is wrong #1246
Comments
So basically just change the docs (while changing to numpy style): bonds : {"conect", "all", None} (optional)
If set to "conect", then write those bonds to the output file that were already defined in an input PDB file as PDB CONECT_ records. If set to "all", write all bonds (including guessed ones) to the file. ``None`` does not write any bonds. The default is "conect". Have we got a test case? |
Dear all, Hopefully I've done things as requested, and I apologise again for my rookie-ness. I've updated the doc in a numpy style, and written it here: Please let me know if this is satisfactory. I'm still committed to the curvature studies, whether part of GSOC or not; I'll try to get a preliminary code on it working out a simple x-y plane meshgrid style hopefully sometime next week. Thanks Yours Sincerely Sang |
Rookie-ness is normal when you begin. Don't worry about that, you will learn. I've seen that you updated the documentation for the PDB writer in the pull request about the distance calculation. Since these are two unrelated issues, they should be tackled in two different pull request. Could you create a new branch for your change in the PDB documentation, and submit a new pull request on that issue? |
- fixes #1246 - supercedes and closes PR #1279 by @Shtkddud123 - added @Shtkddud123 to AUTHORS - updated CHANGELOG
- fixes #1246 - supercedes and closes PR #1279 by @Shtkddud123 - added @Shtkddud123 to AUTHORS - updated CHANGELOG
- fixes #1246 - supercedes and closes PR #1279 by @Shtkddud123 - added @Shtkddud123 to AUTHORS - updated CHANGELOG
- fixes #1246 - supercedes and closes PR #1279 by @Shtkddud123 - added @Shtkddud123 to AUTHORS - updated CHANGELOG
The documentation of
PDBWriter.__init__
tells:This is in contradiction with the signature of the signature that tells that the default value for the argument is
"conect"
. It is also in contradiction with the code ofPDBWriter._write_pdb_bonds
:The text was updated successfully, but these errors were encountered: