使用典型的pdb文件,我可以使用类似于Biopython文档中提供的方法计算结构中两个原子之间的距离。如图所示:
from Bio import PDB
parser = PDB.PDBParser()
pdb1 ='./4twu.pdb'
structure = parser.get_structure("4twu", pdb1)
model = structure[0]
chain = model['A']
residue1 = chain[1]
residue2 = chain[2]
atom1 = residue1['CA']
atom2 = residue2['CA']
distance = atom1-atom2
print(distance)
Biopython中是否有方法用xyz坐标计算从原子到固定点的距离?如果不是Biopython,那么解决这个问题的最佳方法是什么?感谢。
答案 0 :(得分:0)
你的atom1对象将坐标存储在coord
属性中(它是一个NumPy数组),例如
>>> print(atom1.coord)
[ 26.26600075 25.41300011 2.84200001]
如果要计算到太空中另一个点的距离,则需要以类似的格式定义它。
import numpy
x = 1
y = 1
y = 1
v = numpy.array((x, y, z), dtype=float)
然后您可以使用NumPy计算distance。
distance = numpy.linalg.norm(atom1.coord - v)