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 d625328 commit 501aaa4Copy full SHA for 501aaa4
alphafold3_pytorch/inputs.py
@@ -142,6 +142,7 @@ class MoleculeInput:
142
templates: Float['t n n dt'] | None = None
143
msa: Float['s n dm'] | None = None
144
atom_pos: List[Float['_ 3']] | Float['m 3'] | None = None
145
+ output_atompos_indices: Int[' m'] | None = None
146
template_mask: Bool[' t'] | None = None
147
msa_mask: Bool[' s'] | None = None
148
distance_labels: Int['n n'] | None = None
@@ -347,6 +348,7 @@ class Alphafold3Input:
347
348
resolved_labels: Int[' n'] | None = None
349
add_atom_ids: bool = False
350
add_atompair_ids: bool = False
351
+ add_output_atompos_indices: bool = True
352
353
@typecheck
354
def map_int_or_string_indices_to_mol(
0 commit comments