Skip to content

Commit

Permalink
fix: #1294: Fix for donors being incorrectly labelled as missing HLA.
Browse files Browse the repository at this point in the history
  • Loading branch information
zabeen committed May 2, 2024
1 parent c6c8178 commit 98355b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private async Task<SubjectGenotypeResult> CheckDonorHasMissingHla(PatientDonorPa
{
async Task<SubjectGenotypeResult> GetResult()
{
var (hasMissingHla, donorInfo) = await missingHlaChecker.SubjectHasMissingHla(pdp.DonorId, false, matchLoci);
var (hasMissingHla, donorInfo) = await missingHlaChecker.SubjectHasMissingHla(pdp.DonorId, true, matchLoci);
pdp.DidDonorHaveMissingHla = hasMissingHla;
pdp.IsProcessed = hasMissingHla;
await UpdatePatientDonorPair(pdp);
Expand Down

0 comments on commit 98355b8

Please sign in to comment.