Round 285

Round UUID: 2a2ffe07-7f6e-4017-8d29-ebecfad0fa74

Prompt:

Predict treatment outcome (Success or Failure) based on these rules:

**PRIMARY RULES (apply in order):**

1. **High Genetic Match Rule**: If Genetic_Class_A_Matches ≥ 5 AND Genetic_Class_B_Matches ≥ 3 AND Treatment_Months ≥ 30, predict Success

2. **Beta Variant Rule**: If Histogen_Complex = "Beta" AND TcQ_mass ≥ 35000, predict Success

3. **Omicron Variant Rule**: If Histogen_Complex = "Omicron" AND TcQ_mass ≥ 12000, predict Success

4. **Melbourne Medium Mass Rule**: If Cohort = "Melbourne" AND TcQ_mass ≥ 12000 AND TcQ_mass < 25000 AND Treatment_Months ≥ 60, predict Success

5. **Lisbon Delta Success Rule**: If Cohort = "Lisbon" AND Histogen_Complex = "Delta" AND TcQ_mass ≥ 10000, predict Success

6. **Delhi Cohort Success Rule**: If Cohort = "Delhi" AND TcQ_mass ≥ 20000, predict Success

7. **Delta Moderate Mass Rule**: If Histogen_Complex = "Delta" AND TcQ_mass ≥ 15000 AND TcQ_mass < 20000 AND Cohort != "Melbourne", predict Success

8. **Delta Low Mass Rule**: If Histogen_Complex = "Delta" AND TcQ_mass < 15000 AND Treatment_Months > 80, predict Failure

9. **High Mass Rule**: If TcQ_mass ≥ 50000, predict Success

10. **Default Rule**: If none of the above apply, predict Failure

**INSTRUCTIONS:**
- Apply rules in the exact order listed above
- Use the first rule that matches the data
- Be precise with numerical thresholds (use ≥, ≤, <, = as specified)
- Only predict Success or Failure