-
Notifications
You must be signed in to change notification settings - Fork 49
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
Readxyz #266
Readxyz #266
Conversation
…s to be closer to metal and still be identified as coordinating)
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.
As long as you only changed the test cases that were absolutely necessary to change due to the change in oct
default value in getBondedAtomsOct
, this should be good
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.
It looks like the test case changes are the same as in commit 0ed95c5. The changes to the readfromxyz
function look good to me.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #266 +/- ##
==========================================
- Coverage 37.40% 37.23% -0.18%
==========================================
Files 89 89
Lines 29827 29978 +151
==========================================
+ Hits 11158 11162 +4
- Misses 18669 18816 +147
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…readxyz merging changes to readxyz
@@ -6055,6 +6082,187 @@ | |||
# return minimum RMSD, maximum pairwise distance in that structure | |||
return current_min, max_dist | |||
|
|||
def get_symmetry(tmc_mol, verbose=True, max_allowed_dev=30): |
Check notice
Code scanning / CodeQL
First parameter of a method is not named 'self' Note
symmetry_dict : dictionary | ||
Dictionary storing assigned symmetry class and devations from all possible symmetry classes. | ||
""" | ||
from molSimplify.Classes.ligand import ligand_breakdown |
Check notice
Code scanning / CodeQL
Cyclic import Note
molSimplify.Classes.ligand
Dictionary storing assigned symmetry class and devations from all possible symmetry classes. | ||
""" | ||
from molSimplify.Classes.ligand import ligand_breakdown | ||
from molSimplify.Classes.mol2D import Mol2D |
Check notice
Code scanning / CodeQL
Cyclic import Note
molSimplify.Classes.mol2D
@@ -9,6 +9,7 @@ | |||
from molSimplify.Classes.globalvars import (dict_oneempty_check_st, | |||
oneempty_angle_ref) | |||
from molSimplify.Classes.mol3D import mol3D | |||
from molSimplify.Classes.ligand import ligand_breakdown |
Check notice
Code scanning / CodeQL
Unused import Note test
@@ -4148,7 +4176,7 @@ | |||
""" | |||
|
|||
from molSimplify.Informatics.graph_analyze import obtain_truncation_metal | |||
from molSimplify.Classes.ligand import ligand_breakdown # , ligand_assign | |||
from molSimplify.Classes.ligand import ligand_breakdown |
Check notice
Code scanning / CodeQL
Cyclic import Note
molSimplify.Classes.ligand
@@ -4289,6 +4317,7 @@ | |||
Dictionary containing rmsd_max and atom_dist_max. | |||
""" | |||
from molSimplify.Scripts.oct_check_mols import readfromtxt | |||
from molSimplify.Classes.ligand import ligand_breakdown |
Check notice
Code scanning / CodeQL
Cyclic import Note
update readfromxyz to allow xyz files as strings