Deleted alleles when matching/scoring XX codes #1129
zabeen
started this conversation in
Known Issues
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When running exercise 1 of the WMDA consensus dataset (#964), one major cause of discrepant mismatch counts was
B*39:XX
vs.*38:XX
.The explanation for this is that the more recent versions of the
hla_nom
contain the following deleted alleles:At present, the HLA metadata of deleted alleles is still used when generating the HMD so that such alleles do not throw 404 HMD exceptions. Where the deleted allele has been renamed, the metadata of the new allele is saved against the deleted allele name. In the case of the above
B*38
alleles, this means metadata for the correspondingB*39
alleles are saved against them in the HMD. E.g.,B*38:156
has the matching P group ofB*39:171
.Metadata for XX codes is generated by grouping together all alleles with the same locus and first field. In the case of
B*38:XX
, this includes the four deletedB*38
alleles that have been renamed toB*39
alleles. This is whyB*39:XX
vs.B*38:XX
was called a potential P group match.If such a match is considered unexpected/undesirable, then the solution would be to exclude deleted allele metadata when generating lookup metadata for XX codes.
Beta Was this translation helpful? Give feedback.
All reactions