HSExposure() 模块不可调用

发布于 2025-01-02 19:10:57 字数 427 浏览 1 评论 0原文

from Bio.PDB import *
parser=PDBParser()
structure=parser.get_structure('cal1','3CLN.pdb')
model=structure[0]
chain=model["A"]
hse=HSExposure()
expca=hse.calc_hs_exposure(model,option='CA3')
print expca[chain[40]]

当我执行此代码时,我收到此错误:

File "D:\python\Core\pdb_2.py", line 6, in <module>
    hse=HSExposure()
TypeError: 'module' object is not callable

有什么问题吗?

from Bio.PDB import *
parser=PDBParser()
structure=parser.get_structure('cal1','3CLN.pdb')
model=structure[0]
chain=model["A"]
hse=HSExposure()
expca=hse.calc_hs_exposure(model,option='CA3')
print expca[chain[40]]

When I execute this code, I'm getting this error:

File "D:\python\Core\pdb_2.py", line 6, in <module>
    hse=HSExposure()
TypeError: 'module' object is not callable

What's wrong with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沉溺在你眼里的海 2025-01-09 19:10:57

对于像我这样仍在寻找答案的人:
大多数教程似乎都有这个错误。对我有用的是

exp_ca = HSExposureCA(model)  
res_id = residue.get_id()  
print(exp_ca[(chain.get_id(), res_id)])  

请注意,HSEalpha 对于链的第一个和最后一个残基是未定义的。

For anyone like me still looking for the answer:
Most tutorials seem to have this wrong. What worked for me was

exp_ca = HSExposureCA(model)  
res_id = residue.get_id()  
print(exp_ca[(chain.get_id(), res_id)])  

Please note that HSEalpha is undefined for the first and last residues of a chain.

久而酒知 2025-01-09 19:10:57

HSExposure 是一个模块,而不是一个类,因此您无法实例化它。该模块中有一个一堆类,所以我假设您想要其中之一。

HSExposure is a module, not a class, so you can't instantiate it. There's a bunch of classes in that module, so I assume you want one of them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文