Closed H-EKE closed 1 year ago
Thank you for the very clear report!
The issue is that you've computed residue-level SASAs, which includes the backbone. What you want to do is compute SASAs for each atom, then use condense_sidechain_sasas
to combine all the atoms' SASAs into one total SASA for each residue's sidechain.
So instead of
sasas = md.shrake_rupley(trj, probe_radius=0.28, mode='residue')
you want
sasas = md.shrake_rupley(trj, probe_radius=0.28, mode='atom')
Check out the exposons page in the documentation!
Good luck!
Reopen this issue if you still have problems!
Hi,
I am trying to follow the tutorial to calculate exposons. I have tried so far this:
My problem begins here, when I run this 2 commands
Did I foget any step? My MD simulation was done with OpenMM and charmm forcefield.
Thanks in advance!