Round 283

Round UUID: 7cae484d-072e-454c-ad6e-b45c6f28af4a

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, predict Success

2. **Short Treatment Success Rule**: If Treatment_Months ≤ 70, predict Success

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

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

5. **Delta Low Mass Rule**: If Histogen_Complex = "Delta" AND TcQ_mass < 20000 AND Treatment_Months > 70, predict Failure

6. **Cohort Exception Rule**: If Cohort = "Lisbon" AND Histogen_Complex = "Delta" AND TcQ_mass < 10000, predict Success

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

8. **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