문제

I am comparing two structures and a bit confused about meaning of the result parameters: What is the value returned saved in super_imposer.rms ? I guess it's RMSD, but why is it not written as such?

도움이 되었습니까?

해결책

super_imposer.rms is indeed the root-mean-square deviation.

If you consult the source of Bio.PDB.Superimposer, you'll see that the rms attribute is the result of a call to get_rms(). The docstring for get_rms() reads:

Root mean square deviation of superimposed coordinates.

The Tutorial does say that "The RMSD is stored in the rmsd attribute," however. No idea why this discrepancy exists.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top