HLA-B60
HLA-B60 (B60) is an HLA - B serotype. B60 is a split antigen serotype that recognizes certain B40 serotypes.[1][2]
Serotype
B*40 | B60 | B40 | B61 | Sample |
allele | % | % | % | size (N) |
4001 | 93 | 4 | 2 | 3854 |
gollark: If the issue is what I think it could be, then it's accidentally dropping? data on the threshold of the rolling counter region incorrectly.
gollark: ```nimproc pollTargets(ctx: Ctx) {.async.} = for row in ctx.db.all("SELECT * FROM sites"): var (id, url, rollingTotalPings, rollingSuccessfulPings, rollingLatency, rollingDataSince) = row.unpack((int64, string, int64, int64, int64, Option[Time])) let res = await ctx.pollTarget(url) let threshold = getTime() # drop old data from rolling counters if rollingDataSince.isSome: for row in ctx.db.iterate("SELECT status, latency FROM reqs WHERE timestamp >= ? AND timestamp <= ? AND site = ?", rollingDataSince.get, threshold, id): let (statusRaw, latency) = row.unpack((int, int)) rollingTotalPings -= 1 rollingLatency -= latency if statusRaw <= 0: rollingSuccessfulPings -= 1 # add new data rollingTotalPings += 1 rollingLatency += res.latency if int(res.rtype) <= 0: rollingSuccessfulPings += 1 ctx.db.transaction: ctx.db.exec("UPDATE sites SET rc_total = ?, rc_success = ?, rc_latency = ?, rc_data_since = ? WHERE sid = ?", rollingTotalPings, rollingSuccessfulPings, rollingLatency, threshold, id) ctx.db.exec("INSERT INTO reqs (site, timestamp, status, latency) VALUES (?, ?, ?, ?)", id, getTime(), int(res.rtype), res.latency)```This is the core algorithm.
gollark: Actually, æææææ who even knows.
gollark: The boundary conditions could be wrong on this query.
gollark: Hmm. I think I might know what this is maybe?
References
- Ways JP, Lawlor DA, Wan AM, Parham P (1987). "A transposable epitope of HLA-B7, B40 molecules". Immunogenetics. 25 (5): 323–8. doi:10.1007/BF00404425. PMID 2437025.
- Marsh, S. G.; Albert, E. D.; Bodmer, W. F.; Bontrop, R. E.; Dupont, B.; Erlich, H. A.; Fernández-Viña, M.; Geraghty, D. E.; Holdsworth, R.; Hurley, C. K.; Lau, M.; Lee, K. W.; Mach, B.; Maiers, M.; Mayr, W. R.; Müller, C. R.; Parham, P.; Petersdorf, E. W.; Sasazuki, T.; Strominger, J. L.; Svejgaard, A.; Terasaki, P. I.; Tiercy, J. M.; Trowsdale, J. (2010). "Nomenclature for factors of the HLA system, 2010". Tissue Antigens. 75 (4): 291–455. doi:10.1111/j.1399-0039.2010.01466.x. PMC 2848993. PMID 20356336.
- Robinson J, Waller MJ, Fail SC, Marsh SG (2006). "The IMGT/HLA and IPD databases". Hum. Mutat. 27 (12): 1192–9. doi:10.1002/humu.20406. PMID 16944494.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.