@@ -35,7 +35,7 @@ params {
3535 steps = null // Optional: Comma-separated list of steps to run (e.g., 'filtering' to rerun only filtering)
3636
3737 // ProteinMPNN sequence optimization options
38- run_proteinmpnn = false // Enable ProteinMPNN sequence optimization of Boltzgen designs
38+ run_proteinmpnn = true // Enable ProteinMPNN sequence optimization of Boltzgen designs (set to false to disable)
3939 mpnn_sampling_temp = 0.1 // Sampling temperature (0.1-0.3 recommended, lower = more conservative)
4040 mpnn_num_seq_per_target = 8 // Number of sequence variants to generate per structure
4141 mpnn_batch_size = 1 // Batch size for ProteinMPNN inference
@@ -47,7 +47,7 @@ params {
4747 mpnn_designed_chains = null // Chains to design (e.g., 'C' - typically the binder chain)
4848
4949 // Boltz-2 structure prediction options (for refolding ProteinMPNN sequences)
50- run_boltz2_refold = false // Enable Boltz-2 structure prediction for ProteinMPNN sequences
50+ run_boltz2_refold = true // Enable Boltz-2 structure prediction for ProteinMPNN sequences (set to false to disable)
5151 boltz2_cache = null // Cache directory for Boltz-2 model weights (~6GB), defaults to ~/.boltz
5252 boltz2_num_recycling = 3 // Number of recycling steps (3-5 recommended)
5353 boltz2_num_diffusion = 200 // Number of diffusion samples (higher = slower but more accurate)
@@ -56,16 +56,16 @@ params {
5656 boltz2_torch_precision = ' medium' // Torch float32 matmul precision: 'medium', 'high', or 'highest' (for Tensor Cores)
5757
5858 // IPSAE scoring options
59- run_ipsae = false // Enable IPSAE scoring of Boltzgen predictions (evaluates protein-protein interactions )
59+ run_ipsae = true // Enable IPSAE scoring of Boltz-2 structures (set to false to disable )
6060 ipsae_pae_cutoff = 10 // PAE cutoff for IPSAE calculation (Angstroms, default: 10)
6161 ipsae_dist_cutoff = 10 // Distance cutoff for CA-CA contacts (Angstroms, default: 10)
6262
6363 // PRODIGY binding affinity prediction options
64- run_prodigy = false // Enable PRODIGY binding affinity prediction on final designs
64+ run_prodigy = true // Enable PRODIGY binding affinity prediction on final designs (set to false to disable)
6565 prodigy_selection = null // Chain selection for PRODIGY (e.g., 'A,B'). If null, auto-detects from structure
6666
6767 // Foldseek structural search options
68- run_foldseek = false // Enable Foldseek structural similarity search for budget designs and Boltz-2 structures
68+ run_foldseek = true // Enable Foldseek structural similarity search (requires foldseek_database, set to false to disable)
6969 foldseek_database = null // Path to Foldseek database (e.g., AlphaFold/Swiss-Model, required if run_foldseek is true)
7070 foldseek_evalue = 0.001 // E-value threshold for reporting matches (lower = more stringent)
7171 foldseek_max_seqs = 100 // Maximum number of target sequences to report
@@ -74,7 +74,7 @@ params {
7474 foldseek_alignment_type = 2 // Alignment type: 0=3Di only, 1=TMalign (global), 2=3Di+AA (local, default)
7575
7676 // Metrics consolidation and reporting options
77- run_consolidation = false // Enable consolidated metrics report generation
77+ run_consolidation = true // Enable consolidated metrics report generation (set to false to disable)
7878 report_top_n = 10 // Number of top designs to highlight in report
7979
8080 // Output options
0 commit comments