The national deceased donor matching scheme used in the UK takes into account the HLA mismatch between donor and potential recipient when assigning points to determine the matching sequence. Rather than using a crude number of antigen mismatches, it takes into account the differing immunological effect of mismatches at different loci and assigns a mismatch level from the A:B:DR mismatch, as in the table below:
Level | HLA mismatch summary | HLA mismatch combinations |
---|---|---|
1 | 000 | 000 |
2 | [0 DR and 0/1 B] | 100, 010, 110, 200, 210 |
3 | [0 DR and 2 B] or [1 DR and 0/1 B] | 020, 120, 220, 001, 101, 201, 011, 111, 211 |
4 | [1 DR and 2 B] or [2 DR] | 021, 121, 221, 002, 102, 202, 012, 112, 212, 022, 122, 222 |
The transplantr package has two vectorised functions to
calculate the mismatch level. The hla_mm_level()
takes
three vectors as arguments, one for each of A, B and DR mismatches,
while the hla_mm_level_str()
function takes a single
character string vector representing the mismatch.
This function should be used to calculate match level if the A, B and
DR mismatches are separate variables in the data frame. It uses three
parameters called a
, b
and dr
,
all numeric vectors with possible values of 0 to 2.
Instead of three separate vectors, mismatch may be stored as string such as “1:0:1” or “021” representing A, B and DR mismatches. It is better to store these in a dataframe as strings rather than as numeric in case meaningful zeroes are removed from the start!
The hla_mm_level_str()
function takes two arguments, the
first mm
is for the character string vector for the
mismatches, and the second sep
is a logical value
indicating whether separators are used to separate the values for the
each locus. sep
defaults to TRUE and essentially tells the
function to use the first, third and fifth characters in the string,
compared to sep = FALSE
which takes the first, second and
third characters. It does not matter what the separator character is, as
long as there is both a single character between A and B, and a single
character between B and DR; they do not even need to be the same
character. For example, “1:0:1”, “1-0-1”, “1.0.1” and even “1-0:1” will
all work, but “1:00” will not and neither will “1::0.0”.
Like the hla_mm_level()
function, it is easiest to
implement via a dplyr pipe:
# if the HLA.Mismatch variable does not use separators
mismatches %>%
select(HLA.MM) %>%
mutate(Mismatch.Level = hla_mm_level_str(mm = HLA.MM, sep = FALSE))
#> HLA.MM Mismatch.Level
#> 1 000 1
#> 2 110 2
#> 3 211 3
#> 4 212 4
# if the HLA.Mismatch variable does use separators, sep is optional
mismatches %>%
select(HLA.MM.s) %>%
mutate(Mismatch.Level = hla_mm_level_str(mm = HLA.MM.s))
#> HLA.MM.s Mismatch.Level
#> 1 0:0:0 1
#> 2 1:1:0 2
#> 3 2:1:1 3
#> 4 2:1:2 4
NHSBT Policy POL186/10. Kidney Transplantation: Deceased Donor Allocation. https://nhsbtdbe.blob.core.windows.net/umbraco-assets-corp/16915/kidney-allocation-policy-pol186.pdf (viewed 28th December 2019)