AF3 Rigid类的from_3_points方法解读

打印 上一主题 下一主题

主题 1001|帖子 1001|积分 3003

AlphaFold3 rigid_utils 模块Rigid类的 from_3_points 方法主要用来从三个点构建刚体变换 (Rigid transformation),焦点头脑是 Gram-Schmidt 正交化来生成一个局部坐标系。输入为氨基酸残基的主链原子(N, CA, C)的坐标,返回的 Rigid 实例可以把该氨基酸残基原子的全局坐标转换为局部坐标。
源代码:

  1. @staticmethod
  2.     def from_3_points(
  3.         p_neg_x_axis: torch.Tensor,
  4.         origin: torch.Tensor,
  5.         p_xy_plane: torch.Tensor,
  6.         eps: float = 1e-8
  7.     ) -> Rigid:
  8.         """
  9.             Implements algorithm 21. Constructs transformations from sets of 3
  10.             points using the Gram-Schmidt algorithm.
  11.             Args:
  12.                 p_neg_x_axis: [*, 3] coordinates
  13.                 origin: [*, 3] coordinates used as frame origins
  14.                 p_xy_plane: [*, 3] coordinates
  15.                 eps: Small epsilon value
  16.             Returns:
  17.                 A transformation object of shape [*]
  18.         """
  19.         p_neg_x_axis = torch.unbind(p_neg_x_axis, dim=-1)
  20.         origin = torch.unbind(origin, dim=-1)
  21.         p_xy_plane = torch.unbind(p_xy_plane, dim=-1)
  22.         e0 = [c1 - c2 for c1, c2 in zip(origin, p_neg_x_axis)]
  23.         e1 = [c1 - c2 for c1, c2 in zip(p_xy_plane, origin)]
  24.         denom = torch.sqrt(sum((c * c for c in e0)) + eps)
  25.         e0 = [c / denom for c in e0]
  26.         dot = sum((c1 * c2 for c1, c2 in zip(e0, e1)))
  27.         e1 = [c2 - c1 * dot for c1, c2 in zip(e0, e1)]
  28.         denom = t
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

道家人

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表