Open autodataming opened 7 years ago
How to import HSExposure?
model = structure[0] hse = HSExposure() Calculate HSEalpha exp_ca = hse.calc_hs_exposure(model, option='CA3') Calculate HSEbeta exp_cb=hse.calc_hs_exposure(model, option='CB') Calculate classical coordination number exp_fs = hse.calc_fs_exposure(model) Print HSEalpha for a residue print exp_ca[some_residue]
model = structure[0] hse = HSExposure()
exp_ca = hse.calc_hs_exposure(model, option='CA3')
exp_cb=hse.calc_hs_exposure(model, option='CB')
exp_fs = hse.calc_fs_exposure(model)
print exp_ca[some_residue]
It seems likeHSExposure() is no longer an object, but rather a module comprised of 3 objects that fail to offer the same functionality as HSExposure()
HSExposure()
How to import HSExposure?