You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running through the evaluation code scripts/analyze_ensembles.py but found this line might not correctly filter CA atoms for the sample ensemble aftraj.
# For example: name = 6y2x_A. aftraj is the ensemble generated by AlphaFlow-MD.>>> [aforaintraj.top.atoms]
[GLY1-CA,
SER2-CA,
GLU3-CA,
PRO4-CA,
GLU5-CA,
PRO6-CA,
GLU7-CA,
...]
>>> [aforainaftraj.top.atoms]
[GLY1-CA,
SER2-CA,
GLU3-CA,
PRO4-C,
GLU5-CA,
PRO6-C,
GLU7-CA,
...]
It is likely due to different atom ordering in the topology files for certain amino acids. Would need to filter them separately to ensure getting the CA-only ensemble:
Hi @bjing2016,
Thanks for open-sourcing this awesome work!
I am running through the evaluation code
scripts/analyze_ensembles.py
but found this line might not correctly filter CA atoms for the sample ensembleaftraj
.alphaflow/scripts/analyze_ensembles.py
Line 154 in 849e7a2
It is likely due to different atom ordering in the topology files for certain amino acids. Would need to filter them separately to ensure getting the CA-only ensemble:
The text was updated successfully, but these errors were encountered: