Skip to content

Commit d7c0f08

Browse files
committed
include atom_parent_ids on the AtomInput
1 parent 854d606 commit d7c0f08

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

alphafold3_pytorch/inputs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class AtomInput(TypedDict):
1818
msa: Float['s n dm']
1919
token_bonds: Bool['n n'] | None
2020
atom_ids: Int['m'] | None
21+
atom_parent_ids: Int['m'] | None
2122
atompair_ids: Int['m m'] | Int['nw w (w*2)'] | None
2223
template_mask: Bool['t'] | None
2324
msa_mask: Bool['s'] | None
@@ -39,6 +40,7 @@ class BatchedAtomInput(TypedDict):
3940
msa: Float['b s n dm']
4041
token_bonds: Bool['b n n'] | None
4142
atom_ids: Int['b m'] | None
43+
atom_parent_ids: Int['b m'] | None
4244
atompair_ids: Int['b m m'] | Int['b nw w (w*2)'] | None
4345
template_mask: Bool['b t'] | None
4446
msa_mask: Bool['b s'] | None

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "alphafold3-pytorch"
3-
version = "0.1.66"
3+
version = "0.1.67"
44
description = "Alphafold 3 - Pytorch"
55
authors = [
66
{ name = "Phil Wang", email = "[email protected]" }

0 commit comments

Comments
 (0)