mirror of
https://github.com/RosettaCommons/RFdiffusion.git
synced 2026-06-04 18:44:21 +08:00
12 lines
1012 B
Bash
Executable File
12 lines
1012 B
Bash
Executable File
#!/bin/bash
|
|
# Here, we're designing binders to insulin receptor, without specifying the topology of the binder a prior
|
|
# We first provide the output path and input pdb of the target protein (insulin receptor)
|
|
# We then describe the protein we want with the contig input:
|
|
# - residues 1-150 of the A chain of the target protein
|
|
# - a chainbreak (as we don't want the binder fused to the target!)
|
|
# - A 70-100 residue binder to be diffused (the exact length is sampled each iteration of diffusion)
|
|
# We tell diffusion to target three specific residues on the target, specifically residues 59, 83 and 91 of the A chain
|
|
# We make 10 designs, and reduce the noise added during inference to 0, to improve the quality of the designs
|
|
|
|
../scripts/run_inference.py inference.output_prefix=example_outputs/design_ppi inference.input_pdb=input_pdbs/insulin_target.pdb 'contigmap.contigs=[A1-150/0 70-100]' 'ppi.hotspot_res=[A59,A83,A91]' inference.num_designs=10 denoiser.noise_scale_ca=0 denoiser.noise_scale_frame=0
|