We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d039ae commit 0e1c5fcCopy full SHA for 0e1c5fc
EnQA.py
@@ -71,7 +71,7 @@
71
input_idx = np.array([i['rindex'] for i in pose_input])
72
pose_af2 = parse_pdbfile(args.af2_pdb)
73
af2_idx = np.array([i['rindex'] for i in pose_af2])
74
- mask = af2_idx in input_idx
+ mask = np.isin(af2_idx, input_idx)
75
af2_qa = af2_qa[:, mask]
76
plddt = plddt[:, mask]
77
cmap = cmap[:, mask][mask, :]
0 commit comments