Skip to content

Commit ca6d5b3

Browse files
author
lhatsk
committed
new homomer behaviour also in colabfold and higher default settings for sampling and recycling iterations
1 parent 8abb2fb commit ca6d5b3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,12 +329,12 @@ def to_float(x):
329329
parser.add_argument(
330330
"--times",
331331
type=int,
332-
default=10,
332+
default=100,
333333
)
334334
parser.add_argument(
335335
"--max_recycling_iters",
336336
type=int,
337-
default=3,
337+
default=20,
338338
)
339339
parser.add_argument(
340340
"--num_ensembles",

notebooks/alphalink2.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,14 @@
292292
" template_results,\n",
293293
") = get_msa_and_templates(\n",
294294
" target_id,\n",
295-
" unique_sequences,\n",
295+
" sequences,\n",
296296
" result_dir=result_dir,\n",
297297
" msa_mode=msa_mode,\n",
298298
" use_templates=use_templates,\n",
299299
" homooligomers_num = homooligomers_num\n",
300300
")\n",
301301
"\n",
302-
"for idx, seq in enumerate(unique_sequences):\n",
302+
"for idx, seq in enumerate(sequences):\n",
303303
" chain_id = PDB_CHAIN_IDS[idx]\n",
304304
" sequence_features = pipeline.make_sequence_features(\n",
305305
" sequence=seq, description=f'> {jobname} seq {chain_id}', num_res=len(seq)\n",

0 commit comments

Comments
 (0)