Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
fix 3232
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniBodor committed Jan 31, 2023
1 parent 0848b84 commit d3e0562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deeprank/tools/sasa.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def get_residue_carbon_beta(self, chain1='A', chain2='B'):
np.unique(resB[:, 0].astype(np.int32)).tolist())

self.xyz = {}
self.xyz[chain1] = resA[:, 2:].astype(np.float3232)
self.xyz[chain2] = resB[:, 2:].astype(np.float3232)
self.xyz[chain1] = resA[:, 2:].astype(np.float32)
self.xyz[chain2] = resB[:, 2:].astype(np.float32)

self.resinfo = {}
self.resinfo[chain1] = resA[:, :2]
Expand Down

0 comments on commit d3e0562

Please sign in to comment.