Round 248

Round UUID: 256da9c7-e34d-4b7e-8dd3-bdbaea9303c5

Prompt:

Evaluate whether the treatment will be a success or failure based on the following rules. Apply the rules in sequential order and stop at the first matching rule:

Rule 1: If Histogen_Complex is Beta AND Sex is female AND TcQ_mass > 150,000:
   - Predict Failure regardless of other factors.

Rule 2: If Histogen_Complex is Beta AND Sex is female AND TcQ_mass > 50,000 AND TcQ_mass <= 150,000:
   - If Cohort is Delhi AND Treatment_Months < 80 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches >= 3, predict Success.
   - If Cohort is Melbourne AND Treatment_Months < 55 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches < 6, predict Success.
   - Otherwise, predict Failure.

Rule 3: If Histogen_Complex is Beta AND TcQ_mass > 45,000:
   - If Sex is male AND Cohort is Delhi AND Treatment_Months < 120, predict Success.
   - If Sex is male AND Cohort is Melbourne AND Treatment_Months < 85 AND TcQ_mass < 200,000, predict Success.
   - If Sex is female AND Treatment_Months < 65, predict Success.
   - Otherwise, predict Failure.

Rule 4: If Histogen_Complex is Beta AND TcQ_mass between 30,000 and 45,000:
   - If Cohort is Delhi AND Treatment_Months < 95, predict Success.
   - If Sex is male AND Treatment_Months < 110, predict Success.
   - If Sex is female AND Cohort is Melbourne AND Treatment_Months < 75, predict Success.
   - Otherwise, predict Failure.

Rule 5: If Histogen_Complex is Beta AND TcQ_mass between 25,000 and 30,000:
   - If Cohort is Delhi, predict Success.
   - If Treatment_Months < 85 AND Sex is male, predict Success.
   - If Cohort is Melbourne AND Sex is female AND Treatment_Months < 110, predict Success.
   - Otherwise, predict Failure.

Rule 6: If Histogen_Complex is Beta AND TcQ_mass < 25,000, predict Failure.

Rule 7: If Histogen_Complex is Delta AND Genetic_Class_A_Matches + Genetic_Class_B_Matches >= 4, predict Failure regardless of other factors.

Rule 8: If Histogen_Complex is Delta AND Sex is female AND TcQ_mass > 15,000, predict Failure regardless of other factors.

Rule 9: If Histogen_Complex is Delta AND Sex is male AND Cohort is Melbourne:
   - If Treatment_Months >= 80 OR TcQ_mass > 25,000, predict Failure.
   - If Genetic_Class_A_Matches + Genetic_Class_B_Matches > 3, predict Failure.
   - Otherwise, predict Success.

Rule 10: If Histogen_Complex is Delta AND Sex is male AND TcQ_mass between 7,500 and 25,000:
   - If Cohort is Lisbon AND Treatment_Months < 65, predict Success.
   - If Cohort is Delhi AND Treatment_Months < 90 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches <= 4, predict Success.
   - Otherwise, predict Failure.

Rule 11: If Histogen_Complex is Delta AND Sex is male AND Cohort is Lisbon:
   - If TcQ_mass < 9,000 AND Treatment_Months < 90 AND Genetic_Class_A_Matches <= 3, predict Success.
   - Otherwise, predict Failure.

Rule 12: If Histogen_Complex is Delta AND Sex is female AND TcQ_mass between 7,800 and 8,200:
   - If Cohort is Delhi AND Treatment_Months < 60, predict Success.
   - If Cohort is Melbourne AND Treatment_Months < 75 AND Genetic_Class_A_Matches >= 2, predict Success.
   - Otherwise, predict Failure.

Rule 13: If Histogen_Complex is Delta AND TcQ_mass < 7,800:
   - If Cohort is Delhi AND Treatment_Months < 60 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches < 3, predict Success.
   - If Cohort is Lisbon AND Treatment_Months < 55 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches <= 3, predict Success.
   - If Sex is female AND Genetic_Class_A_Matches >= 2 AND Treatment_Months < 55 AND Cohort is not Melbourne, predict Success.
   - Otherwise, predict Failure.

Rule 14: If Histogen_Complex is Delta AND Sex is female AND Cohort is Melbourne:
   - If Treatment_Months < 5 AND Genetic_Class_A_Matches >= 1, predict Success.
   - If Treatment_Months < 75 AND Genetic_Class_A_Matches >= 2 AND TcQ_mass < 7900, predict Success.
   - Otherwise, predict Failure.

Rule 15: If Histogen_Complex is Omicron AND Sex is female:
   - If Treatment_Months < 35 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches >= 4, predict Success.
   - Otherwise, predict Failure.

Rule 16: If Histogen_Complex is Omicron AND Treatment_Months > 150:
   - If Sex is male AND Genetic_Class_A_Matches + Genetic_Class_B_Matches >= 4, predict Success.
   - Otherwise, predict Failure.

Rule 17: If Histogen_Complex is Omicron AND Treatment_Months between 120 and 150:
   - If Sex is male AND Genetic_Class_A_Matches + Genetic_Class_B_Matches >= 3, predict Success.
   - Otherwise, predict Failure.

Rule 18: If Histogen_Complex is Omicron AND Sex is male AND Treatment_Months between 85 and 120:
   - If Genetic_Class_A_Matches + Genetic_Class_B_Matches >= 3, predict Success.
   - Otherwise, predict Failure.

Rule 19: If Histogen_Complex is Omicron AND Sex is male AND Treatment_Months < 85:
   - If Genetic_Class_A_Matches >= 1 AND Genetic_Class_B_Matches >= 2, predict Success.
   - If Treatment_Months < 30 AND (Genetic_Class_A_Matches >= 1 OR Genetic_Class_B_Matches >= 1), predict Success.
   - Otherwise, predict Failure.

Rule 20: If Histogen_Complex is Delta AND Cohort is Delhi AND TcQ_mass > 10,000 AND TcQ_mass <= 15,000:
   - If Treatment_Months < 40 AND Genetic_Class_A_Matches + Genetic_Class_B_Matches <= 3, predict Success.
   - Otherwise, predict Failure.

Rule 21: If none of the above rules apply, predict Failure.