Hi, I conducted multi-protein docking on my local linux, and there were four protein.
1st step: I used Alphafold 3 to generated a protein complex, and output an ambig file
2nd step: I token AF3_complex.pdb as reference pdb,and ambig.tbl as restraint file to perform four protein molecules docking
Here is my cfg script:
# ====================================================================
# 4-protein docking with HADDOCK3, no restraints, no His auto-processing
# ====================================================================
run_dir = "run1-full"
mode = "local"
debug = true
concat = 3
queue_limit = 100
# ====================================================================
# Paths to the four single-chain protein PDB files
# (names: proteinA, proteinB, proteinC, proteinD)
molecules = [
"pdbs/proteinA.pdb", # Contains only chain A
"pdbs/proteinB.pdb", # Contains only chain B
"pdbs/proteinC.pdb", # Contains only chain C
"pdbs/proteinD.pdb", # Contains only chain D
]
# ====================================================================
[topoaa]
autohis = false
# If you have special histidine protonation states (e.g. HIE/HID),
# you can add nhisd/nhise per molecule; otherwise, leave this as is.
# ====================================================================
[rigidbody]
tolerance = 5
sampling = 500
# No ambig_fname specified → unrestrained free docking
# ====================================================================
[caprieval]
reference_fname = "pdbs/ref_complex.pdb"
# Reference structure for CAPRI evaluation
# ====================================================================
[seletop]
select = 100
# Select the top 100 models after scoring
# ====================================================================
[flexref]
tolerance = 5
# No restraints (ambig_fname not specified)
# ====================================================================
[emref]
tolerance = 5
# No restraints (ambig_fname not specified)
# ====================================================================
[clustfcc]
min_population = 1
# Minimum cluster size for clustering
[seletopclusts]
top_models = 5
# Select top 5 models from the best-scoring clusters
# ====================================================================
[caprieval]
reference_fname = "pdbs/ref_complex.pdb"
# Reference complex structure used again for final CAPRI evaluation
# ====================================================================
3rd step:pymol visulization
There is no sign of any docking
Can you help me solve this problem and optimize the script?
I’m very very grateful!