Open cgpreston opened 1 week ago
This project will need to be synchronized with the SOP 12 release, expected in late summer 2025.
For the GCI classification the current logic for the points that equal classifications is stated in the GCI:
This stated logic matches the SOP 11 logic, however:
if (totalPoints >= 0.1 && totalPoints <= 6) { autoClassification = "Limited"; } else if (totalPoints > 6 && totalPoints <= 11) { autoClassification = "Moderate"; } else if (totalPoints > 11 && totalPoints <= 18 && !replicatedOverTime) { autoClassification = "Strong"; } else if (totalPoints > 11 && totalPoints <= 18 && replicatedOverTime) { autoClassification = "Definitive";
if (totalPoints >= 0.1 && totalPoints < 6.5) { autoClassification = "Limited"; } else if (totalPoints >= 6.5 && totalPoints < 11.5) { autoClassification = "Moderate"; } else if (totalPoints >= 11.5 && totalPoints <= 18 && !replicatedOverTime) { autoClassification = "Strong"; } else if (totalPoints >= 11.5 && totalPoints <= 18 && replicatedOverTime) { autoClassification = "Definitive";
SP ticket: https://broadinstitute.atlassian.net/browse/CGSP-795
This project will need to be synchronized with the SOP 12 release, expected in late summer 2025.
For the GCI classification the current logic for the points that equal classifications is stated in the GCI:
This stated logic matches the SOP 11 logic, however:
The goal would be to do the following:
SP ticket: https://broadinstitute.atlassian.net/browse/CGSP-795