-
Notifications
You must be signed in to change notification settings - Fork 12
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
Update read and write #8
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
83bccc3
fix iCode position index
CunliangGeng 7c1c9fe
Remove definition of col and delimter in pdb2sqlcore
CunliangGeng 6cac22f
add pdb element column and update related r/w
CunliangGeng c1cd70a
udpate the format of atom name and xyz for exporting pdb
CunliangGeng 8bcd44d
add vscode config to gitignore
CunliangGeng 27cc5ef
remove end space
CunliangGeng 564cf67
fix bugs in exportpdb
CunliangGeng 4d97dbb
fix bugs in readsql
CunliangGeng d00ac86
Update .gitignore
CunliangGeng 472245a
Update __init__.py
CunliangGeng 2b8fcae
add read_pdb function
CunliangGeng 2c06d4c
remove no_extra
CunliangGeng 8faaf48
update sql2pdb function
CunliangGeng c3aa628
debug the update function
CunliangGeng 56769cb
change Fnat to fnat
CunliangGeng 5a0a90b
update pdb reading with read_pdb function
CunliangGeng 0f0791d
update compuate_fnat_fast function
CunliangGeng cb0c541
update rotation functions in transform
CunliangGeng 17f3352
update import in tests
CunliangGeng ed962c0
add get_rot_axis_angle function
CunliangGeng 47ade62
update random seed
CunliangGeng 8d84e89
change name _rotation_around_axis to rot_xyz_around_axis
CunliangGeng 3e5f1ce
add docstrings
CunliangGeng 851536a
add warnings and update code
CunliangGeng 7a1c033
add and udpate doctrings
CunliangGeng f668c0b
udpate rotation center parameter
CunliangGeng 21d4d0d
Update content of test_model.pdb
CunliangGeng 5ff09bb
fix _create_sql bugs in pdb2sqlAlchemy
CunliangGeng e93729b
add pdb element column to pdb2sqlAlchemy
CunliangGeng 1fe4402
update test_pdb2sqlAlchemy
CunliangGeng 87ba2b1
fix syntax bug in transform
CunliangGeng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#from pdb2sql import pdb2sql | ||
#from .interface import * | ||
#import transform | ||
from .pdb2sqlcore import pdb2sql | ||
from .interface import interface | ||
from .StructureSimilarity import StructureSimilarity | ||
from . import transform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's nice and controlled but is it needed to read the data ? But at least to write it I think it's really useful
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume the input PDB has strict format, so we don't it that for reading. But we do need some code to preprocess PDB files, I'll write it later.