We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f85170 commit c0d371dCopy full SHA for c0d371d
colabfold/batch.py
@@ -1,3 +1,4 @@
1
+
2
from __future__ import annotations
3
4
import os
@@ -373,6 +374,9 @@ def predict_structure(
373
374
# TODO: add pad_input_mulitmer()
375
input_features = feature_dict
376
input_features["asym_id"] = input_features["asym_id"] - input_features["asym_id"][...,0]
377
+ input_features['chain_num'] = input_features["asym_id"].max() + 1
378
+ model_runner.chain_num = input_features['chain_num']
379
380
else:
381
if model_num == 0:
382
input_features = model_runner.process_features(feature_dict, random_seed=seed)
0 commit comments