SUBSEQ.BIO
DOCS-RFDIFFUSION3

RFdiffusion3 (Foundry)

All-atom RFdiffusion3 / RF3 / MPNN models via Foundry (RosettaCommons/foundry).

Basics

Example 1: unconditional monomer

Design a de novo monomer of length 120–130 residues with no structural input.

  1. Create a JSON file under /inputs, for example /inputs/uncond_monomer.json:
{
  "uncond_monomer": {
    "length": "120-130"
  }
}
  1. Submit a job with the following arguments (New Job → RFdiffusion3):
inputs=/inputs/uncond_monomer.json

RFdiffusion3 will sample one or more all-atom monomers in the requested length range and write PDB/CIF outputs under /outputs.

Example 2: simple protein binder

Design a small binder against a protein target using a minimal hotspot-based configuration.

  1. Upload your target structure to /inputs, for example /inputs/target.pdb.
  2. Create a JSON spec next to it, for example /inputs/protein_binder_simple.json:
{
  "simple_binder": {
    "dialect": 2,
    "input": "/inputs/target.pdb",
    "contig": "50-80,/0,A40-120",
    "infer_ori_strategy": "hotspots",
    "select_hotspots": {
      "A64": "CG,CD1",
      "A88": "CG,CD1"
    }
  }
}
  1. Submit a job with:
inputs=/inputs/protein_binder_simple.json

In this setup:

Adjust the target residue window, hotspot residues/atoms, and binder length range to match your system.

Notes

Submit

Launch from New Job → RFdiffusion3. Keep all uploaded config and structure files under /inputs; outputs will appear under /outputs on completion.