Skip to content

Commit 66c0841

Browse files
committed
add missing_atom_mask to AtomInput as well as BatchedAtomInput
1 parent d643da7 commit 66c0841

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
@@ -137,6 +137,7 @@ class AtomInput:
137137
template_mask: Bool[' t'] | None = None
138138
msa_mask: Bool[' s'] | None = None
139139
atom_pos: Float['m 3'] | None = None
140+
missing_atom_mask: Bool[' m'] | None = None
140141
molecule_atom_indices: Int[' n'] | None = None
141142
distogram_atom_indices: Int[' n'] | None = None
142143
distance_labels: Int['n n'] | None = None
@@ -167,6 +168,7 @@ class BatchedAtomInput:
167168
template_mask: Bool['b t'] | None = None
168169
msa_mask: Bool['b s'] | None = None
169170
atom_pos: Float['b m 3'] | None = None
171+
missing_atom_mask: Bool['b m'] | None = None
170172
molecule_atom_indices: Int['b n'] | None = None
171173
distogram_atom_indices: Int['b n'] | None = None
172174
distance_labels: Int['b n n'] | None = 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.128"
3+
version = "0.1.129"
44
description = "Alphafold 3 - Pytorch"
55
authors = [
66
{ name = "Phil Wang", email = "[email protected]" }

0 commit comments

Comments
 (0)