diff --git a/all_future_model_interpretation.pdf b/all_future_model_interpretation.pdf new file mode 100644 index 0000000..5f9cb8f Binary files /dev/null and b/all_future_model_interpretation.pdf differ diff --git a/all_future_model_interpretation.tex b/all_future_model_interpretation.tex new file mode 100644 index 0000000..970b73d --- /dev/null +++ b/all_future_model_interpretation.tex @@ -0,0 +1,393 @@ +\documentclass[11pt]{ctexart} + +\usepackage[margin=1in]{geometry} +\usepackage{amsmath, amssymb} +\usepackage{booktabs} +\usepackage{enumitem} +\usepackage{hyperref} + +\title{Interpreting the All-Future DeepHealth Model\\ +all-future DeepHealth 模型的解释边界} +\author{} +\date{} + +\begin{document} + +\maketitle + +\begin{abstract} +The all-future DeepHealth model should be interpreted as a +history-conditioned incident disease and mortality risk model. At a query time +\(t\), the hidden state \(h(t)\) summarizes the observed history up to that +time, and the model estimates future first-occurrence risks for diseases in the +model vocabulary, together with future mortality risk. The model does not +directly estimate current clinical disease burden, organ damage, frailty, +disease severity, recurrence risk, or disease-specific weights. Those +quantities require labels, mappings, weights, or supervision that are not part +of the present model. + +\medskip + +all-future DeepHealth 模型应被解释为一个基于既往轨迹的未来新发疾病和死亡风险模型。 +在查询时刻 \(t\),隐含状态 \(h(t)\) 汇总了截至该时刻的已观测历史;模型输出的是 +模型词表内各疾病的未来首次发生风险,以及未来死亡风险。当前模型并不直接估计当前 +临床疾病负担、器官损伤、衰弱程度、疾病严重度、复发风险或疾病特异性权重。这些量 +都需要当前模型之外的标签、映射、权重或额外监督。 +\end{abstract} + +\section{English} + +\subsection{Model object} + +For individual \(i\), let \(\mathcal{H}_i(t)\) denote the observed history up to +query time \(t\). The all-future model produces +\[ + h_i(t) = f_\theta(\mathcal{H}_i(t)), +\] +and, for each disease token \(d\) in the modeled disease vocabulary +\(\mathcal{D}\), estimates a future first-occurrence risk over a horizon +\(\tau\): +\[ + p_{i,d}(t,\tau) + = + P_\theta\!\left(T_{i,d}\in(t,t+\tau]\mid h_i(t)\right), +\] +where \(T_{i,d}\) is the first observed occurrence time of disease \(d\). If the +model includes a death endpoint, it also estimates +\[ + p_{i,\mathrm{death}}(t,\tau) + = + P_\theta\!\left(T_{i,\mathrm{death}}\in(t,t+\tau]\mid h_i(t)\right). +\] + +The disease sequence is a first-occurrence sequence. Therefore, from the input +history itself we know +\[ + m_{i,d}(t)=\mathbf{1}\{T_{i,d}\le t\}. +\] +This historical indicator is not learned by the model; it is read directly from +the event history. + +\subsection{Masking already occurred diseases} + +For a disease that has already occurred before or at \(t\), the model output for +that disease should not be interpreted as recurrence risk or current disease +activity. For future incident disease summaries, already occurred diseases +should be masked: +\[ + p^{\mathrm{new}}_{i,d}(t,\tau) + = + \left[1-m_{i,d}(t)\right]p_{i,d}(t,\tau). +\] + +\subsection{Directly supported model-derived quantities} + +The current model directly supports the following quantities. + +\paragraph{Disease-specific future first-occurrence risk.} +For each modeled disease \(d\), +\[ + p^{\mathrm{new}}_{i,d}(t,\tau) +\] +is the estimated risk that disease \(d\) newly appears within the next +\(\tau\) years, conditional on the history summarized by \(h_i(t)\). + +\paragraph{Future mortality risk.} +\[ + p_{i,\mathrm{death}}(t,\tau) +\] +is the estimated probability of death within the next \(\tau\) years. Death is a +terminal endpoint and should not be treated as an ordinary disease burden +weight. + +\paragraph{Probability of being alive with no new modeled disease.} +Using the model's disease-specific and death risks, one can summarize the +probability of no new modeled disease and survival over the next \(\tau\) years: +\[ + S^{\mathrm{all}}_i(t,\tau) + = + \left[1-p_{i,\mathrm{death}}(t,\tau)\right] + \prod_{d\in\mathcal{D}} + \left[1-p^{\mathrm{new}}_{i,d}(t,\tau)\right]. +\] +Equivalently, if the model is represented through cumulative hazards +\(\Lambda_{i,d}(t,\tau)=-\log[1-p_{i,d}(t,\tau)]\), +\[ + S^{\mathrm{all}}_i(t,\tau) + = + \exp\left( + -\Lambda_{i,\mathrm{death}}(t,\tau) + -\sum_{d\in\mathcal{D}} + [1-m_{i,d}(t)]\Lambda_{i,d}(t,\tau) + \right). +\] + +\paragraph{Probability of being alive with no new disease in a specified set.} +For any analyst-specified subset of disease tokens \(G\subseteq\mathcal{D}\), +\[ + S^{G}_i(t,\tau) + = + \left[1-p_{i,\mathrm{death}}(t,\tau)\right] + \prod_{d\in G} + \left[1-p^{\mathrm{new}}_{i,d}(t,\tau)\right]. +\] +This is a subset-level future disease-free survival summary. If \(G\) is called +an organ system, the disease-to-organ grouping is external to the model and +must not be described as a learned organ score. + +\subsection{Historical counts are not model-derived burden} + +One may count observed historical diseases: +\[ + B^{\mathrm{history}}_i(t) + = + \sum_{d\in\mathcal{D}}m_{i,d}(t). +\] +This quantity is a direct count from the input sequence. It does not require the +model and should not be presented as a model-derived disease burden score. +Without disease severity labels or disease weights, it treats all disease +tokens equally. + +\subsection{What the current model does not estimate} + +The current model does not directly estimate: +\begin{itemize}[leftmargin=1.5em] + \item current clinical disease burden; + \item organ damage, organ age, or organ functional reserve; + \item frailty or frailty weights; + \item severity of a newly diagnosed disease; + \item recurrence risk after first occurrence; + \item relative clinical importance of different disease tokens. +\end{itemize} + +These interpretations require additional labels, mappings, weights, or model +training objectives. Using the present all-future model to claim these +quantities would be over-interpretation. + +\subsection{Post-onset prognosis for the same new disease} + +For a disease \(d\) that newly occurs at time \(T_{i,d}\), the model cannot +infer the clinical severity of that disease itself. However, after the disease +has entered the history, one may query the model again and compare subsequent +future risks: +\[ + p^{\mathrm{new}}_{i,e}(T_{i,d},\tau),\quad e\ne d, + \qquad + p_{i,\mathrm{death}}(T_{i,d},\tau). +\] +This supports a prognosis-oriented statement: the same incident diagnosis may +be followed by different future disease and mortality risk profiles in people +with different prior trajectories. It should not be described as direct disease +severity. + +\subsection{Future extension with reliable recurrence data} + +The above interpretation is constrained by the first-occurrence nature of the +current disease sequence. UK Biobank does not provide a reliable longitudinal +record of disease recurrence, relapse, repeated admissions, treatment +escalation, or episode-level severity for the modeled disease tokens. Therefore, +the present model cannot be used to estimate recurrence risk or ongoing disease +activity after first onset. + +If reliable recurrence or repeated-event data were available, one could define a +different modeling target. Let \(N_{i,d}(t)\) be the counting process for all +episodes of disease \(d\), not only its first occurrence. A recurrence-aware +model could estimate the future increment +\[ + P_\theta\!\left(N_{i,d}(t+\tau)-N_{i,d}(t)>0 \mid h_i(t)\right), +\] +or the expected number of future episodes +\[ + E_\theta\!\left[N_{i,d}(t+\tau)-N_{i,d}(t)\mid h_i(t)\right]. +\] +For individuals with \(m_{i,d}(t)=1\), this would support a genuine +post-onset interpretation of future recurrence or disease activity. For +individuals with \(m_{i,d}(t)=0\), it would remain an incident disease risk. + +With such data, the model could also separate three clinically different +quantities: +\begin{itemize}[leftmargin=1.5em] + \item incident risk: the first future onset of a disease not yet observed; + \item recurrence or repeated-event risk: future episodes after a disease has + already occurred; + \item mortality risk: a terminal endpoint that competes with future + non-fatal events. +\end{itemize} +If recurrence episodes were linked to reliable episode-level severity labels, +such as hospitalization intensity, treatment escalation, or validated severity +grades, then a further supervised model could learn severity-aware prognosis. +These extensions would require new data and new training targets; they are not +available from the current all-future first-occurrence model. + +\section{中文} + +\subsection{模型对象} + +对于个体 \(i\),令 \(\mathcal{H}_i(t)\) 表示查询时刻 \(t\) 之前已经观测到的历史。 +all-future 模型产生 +\[ + h_i(t)=f_\theta(\mathcal{H}_i(t)), +\] +并且对模型疾病词表 \(\mathcal{D}\) 中的每个疾病 \(d\),估计未来 \(\tau\) 年内的首次 +发生风险: +\[ + p_{i,d}(t,\tau) + = + P_\theta\!\left(T_{i,d}\in(t,t+\tau]\mid h_i(t)\right), +\] +其中 \(T_{i,d}\) 是疾病 \(d\) 的首次观测发生时间。如果模型包含死亡终点,则同时估计 +\[ + p_{i,\mathrm{death}}(t,\tau) + = + P_\theta\!\left(T_{i,\mathrm{death}}\in(t,t+\tau]\mid h_i(t)\right). +\] + +当前疾病序列是 first-occurrence 序列。因此,从输入历史本身即可得到 +\[ + m_{i,d}(t)=\mathbf{1}\{T_{i,d}\le t\}. +\] +这个历史发生指示量不是模型学出来的,而是直接从事件历史中读出的。 + +\subsection{已经发生疾病的 mask} + +如果某个疾病在 \(t\) 之前或 \(t\) 时已经发生,那么该疾病对应的模型输出不应解释为复发 +风险,也不应解释为当前疾病活跃程度。在汇总未来新发疾病风险时,应对已经发生过的疾病 +进行 mask: +\[ + p^{\mathrm{new}}_{i,d}(t,\tau) + = + \left[1-m_{i,d}(t)\right]p_{i,d}(t,\tau). +\] + +\subsection{当前模型直接支持的派生量} + +当前模型直接支持以下几类量。 + +\paragraph{疾病层面的未来首次发生风险。} +对每个模型内疾病 \(d\), +\[ + p^{\mathrm{new}}_{i,d}(t,\tau) +\] +表示在 \(h_i(t)\) 所总结的历史条件下,疾病 \(d\) 在未来 \(\tau\) 年内新发生的风险。 + +\paragraph{未来死亡风险。} +\[ + p_{i,\mathrm{death}}(t,\tau) +\] +表示未来 \(\tau\) 年内死亡的概率。死亡是终末结局,不应作为普通疾病负担权重加入疾病 +负担求和。 + +\paragraph{未来无新病且存活的概率。} +利用疾病层面风险和死亡风险,可以汇总未来 \(\tau\) 年内无任何模型内新病且存活的概率: +\[ + S^{\mathrm{all}}_i(t,\tau) + = + \left[1-p_{i,\mathrm{death}}(t,\tau)\right] + \prod_{d\in\mathcal{D}} + \left[1-p^{\mathrm{new}}_{i,d}(t,\tau)\right]. +\] +如果用累计 hazard 表示,令 +\(\Lambda_{i,d}(t,\tau)=-\log[1-p_{i,d}(t,\tau)]\),则 +\[ + S^{\mathrm{all}}_i(t,\tau) + = + \exp\left( + -\Lambda_{i,\mathrm{death}}(t,\tau) + -\sum_{d\in\mathcal{D}} + [1-m_{i,d}(t)]\Lambda_{i,d}(t,\tau) + \right). +\] + +\paragraph{未来无指定疾病集合新发且存活的概率。} +对于任意由分析者预先指定的疾病 token 集合 \(G\subseteq\mathcal{D}\),可以定义 +\[ + S^{G}_i(t,\tau) + = + \left[1-p_{i,\mathrm{death}}(t,\tau)\right] + \prod_{d\in G} + \left[1-p^{\mathrm{new}}_{i,d}(t,\tau)\right]. +\] +这只是指定疾病集合层面的未来 disease-free survival 汇总。如果将 \(G\) 称为某个器官系统, +那么疾病到器官的分组来自模型外部,不能描述为模型学到的器官评分。 + +\subsection{历史计数不是模型派生的疾病负担} + +可以计算历史已经发生过多少个模型内疾病: +\[ + B^{\mathrm{history}}_i(t) + = + \sum_{d\in\mathcal{D}}m_{i,d}(t). +\] +但这个量只是从输入序列直接计数,不需要模型,因此不应表述为模型派生的疾病负担评分。 +在没有疾病严重度标签或疾病权重时,它默认所有疾病 token 等价。 + +\subsection{当前模型不能估计什么} + +当前模型不能直接估计: +\begin{itemize}[leftmargin=1.5em] + \item 当前临床疾病负担; + \item 器官损伤、器官年龄或器官功能储备; + \item 衰弱程度或衰弱权重; + \item 某个新发疾病本身的严重程度; + \item 首次发生后的复发风险; + \item 不同疾病 token 之间的相对临床重要性。 +\end{itemize} + +这些解释都需要额外标签、映射、权重或新的训练目标。用当前 all-future 模型直接声称这些量, +属于过分解读。 + +\subsection{同一新发疾病后的预后差异} + +对于在 \(T_{i,d}\) 时刻新发生的疾病 \(d\),模型不能推断这个疾病本身的临床严重程度。 +但是,当该疾病已经进入历史之后,可以再次查询模型,并比较之后的未来风险: +\[ + p^{\mathrm{new}}_{i,e}(T_{i,d},\tau),\quad e\ne d, + \qquad + p_{i,\mathrm{death}}(T_{i,d},\tau). +\] +这支持一种预后层面的表述:同一个新发诊断出现在不同既往轨迹的人身上,可能对应不同的 +后续新病和死亡风险结构。但这不应被表述为模型直接判断了疾病严重度。 + +\subsection{如果有可靠复发数据,未来可以做什么} + +上述解释受到当前 first-occurrence 疾病序列的限制。UK Biobank 并没有为模型词表中的 +疾病提供可靠的纵向复发、复燃、重复住院、治疗升级或 episode 层面严重程度记录。因此, +当前模型不能用于估计首次发病后的复发风险或持续疾病活动。 + +如果未来有可靠的复发或重复事件数据,可以定义一个不同的建模目标。令 \(N_{i,d}(t)\) +表示疾病 \(d\) 的所有事件计数过程,而不只是首次发生。一个考虑复发的模型可以估计未来 +事件增量: +\[ + P_\theta\!\left(N_{i,d}(t+\tau)-N_{i,d}(t)>0 \mid h_i(t)\right), +\] +或者估计未来事件次数的期望: +\[ + E_\theta\!\left[N_{i,d}(t+\tau)-N_{i,d}(t)\mid h_i(t)\right]. +\] +对于 \(m_{i,d}(t)=1\) 的个体,这才可以支持真正的发病后复发风险或疾病活动解释;对于 +\(m_{i,d}(t)=0\) 的个体,它仍然对应未来首次发病风险。 + +在这样的数据条件下,模型可以区分三个临床上不同的量: +\begin{itemize}[leftmargin=1.5em] + \item 新发风险:尚未发生疾病的未来首次发生风险; + \item 复发或重复事件风险:疾病已经发生后的未来 episode 风险; + \item 死亡风险:与非致死事件竞争的终末结局风险。 +\end{itemize} +如果复发 episode 还带有可靠的 episode 层面严重程度标签,例如住院强度、治疗升级或经过 +验证的严重程度分级,那么还可以进一步训练有监督的严重程度相关预后模型。但这些扩展都 +需要新的数据和新的训练目标,并不是当前 all-future first-occurrence 模型已经具备的能力。 + +\section{Recommended wording} + +\paragraph{English.} +The all-future model is a history-conditioned incident disease and mortality +risk model. Its outputs support future disease-free survival summaries over the +modeled disease vocabulary, but do not directly quantify current disease +burden, organ damage, frailty, or disease severity. + +\paragraph{中文。} +all-future 模型是基于既往轨迹的未来新发疾病和死亡风险模型。它的输出可以支持模型词表 +范围内的未来无新病且存活概率汇总,但不能直接量化当前疾病负担、器官损伤、衰弱程度或 +疾病严重度。 + +\end{document} diff --git a/build_organ_involvement_label_mapping.py b/build_organ_involvement_label_mapping.py deleted file mode 100644 index a23f89c..0000000 --- a/build_organ_involvement_label_mapping.py +++ /dev/null @@ -1,157 +0,0 @@ -from __future__ import annotations - -import csv -import re -from pathlib import Path - - -LABELS = Path("labels.csv") -OUT = Path("organ_involvement_label_mapping.csv") - - -ORGANS = [ - "brain_neurologic", - "heart", - "artery_vascular", - "immune", - "intestine_digestive", - "kidney", - "liver", - "lung", - "muscle_musculoskeletal", - "pancreas_endocrine", - "adipose_metabolic", - "female_reproductive", - "male_reproductive", - "neoplasm", -] - - -def _code_key(code: str) -> tuple[str, int, str]: - code = code.strip().upper() - match = re.match(r"^([A-Z])(\d{2})(?:\.?([A-Z0-9]+))?", code) - if not match: - raise ValueError(f"Invalid ICD-10 code: {code!r}") - letter, number, suffix = match.groups() - return letter, int(number), suffix or "" - - -def _in_range(code: str, start: str, end: str) -> bool: - c_letter, c_num, _ = _code_key(code) - s_letter, s_num, _ = _code_key(start) - e_letter, e_num, _ = _code_key(end) - if s_letter == e_letter: - return c_letter == s_letter and s_num <= c_num <= e_num - return ( - (s_letter < c_letter < e_letter) - or (c_letter == s_letter and c_num >= s_num) - or (c_letter == e_letter and c_num <= e_num) - ) - - -def _matches_any(code: str, ranges: list[tuple[str, str]]) -> bool: - return any(_in_range(code, start, end) for start, end in ranges) - - -def organ_for_icd10(code: str) -> tuple[str, str]: - code = code.strip().upper() - if not re.match(r"^[A-Z]\d{2}", code): - return "", "unmapped_non_icd10" - - if _matches_any(code, [("C00", "D48")]): - return "neoplasm", "neoplasm_c00_d48" - - if _matches_any(code, [("F00", "F09"), ("G00", "G99"), ("I60", "I69")]): - return "brain_neurologic", "f00_f09_g00_g99_i60_i69" - - if _matches_any(code, [("I00", "I09"), ("I20", "I52")]): - return "heart", "i00_i09_i20_i52" - - if _matches_any(code, [("I10", "I15"), ("I70", "I89"), ("I95", "I99")]): - return "artery_vascular", "i10_i15_i70_i89_i95_i99" - - if _matches_any(code, [("A00", "B99"), ("D50", "D89")]): - return "immune", "a00_b99_d50_d89" - - if _matches_any(code, [("J00", "J99")]): - return "lung", "j00_j99" - - if _matches_any(code, [("K70", "K77")]): - return "liver", "k70_k77" - - if _matches_any(code, [("K85", "K86"), ("E10", "E16")]): - return "pancreas_endocrine", "k85_k86_e10_e16" - - if _matches_any(code, [("K00", "K69"), ("K78", "K84"), ("K87", "K93")]): - return "intestine_digestive", "k00_k69_k78_k84_k87_k93" - - if _matches_any(code, [("N00", "N39")]): - return "kidney", "n00_n39" - - if _matches_any(code, [("N70", "N98"), ("O00", "O99")]): - return "female_reproductive", "n70_n98_o00_o99" - - if _matches_any(code, [("N40", "N53")]): - return "male_reproductive", "n40_n53" - - if _matches_any(code, [("M00", "M99")]): - return "muscle_musculoskeletal", "m00_m99" - - if _matches_any(code, [("E00", "E09"), ("E17", "E90")]): - return "adipose_metabolic", "e00_e09_e17_e90" - - return "", "unmapped_no_organ_rule" - - -def main() -> None: - rows = [] - with LABELS.open(encoding="utf-8") as f: - for i, line in enumerate(f): - line = line.strip() - if not line: - continue - parts = line.split(maxsplit=1) - code = parts[0].strip().upper() - name = parts[1].strip() if len(parts) > 1 else "" - organ_id, match_source = organ_for_icd10(code) - rows.append( - { - "token_id": i + 3, - "label_code": code, - "label_name": name, - "organ_id": organ_id, - "organ_label": organ_id, - "organ_weight": 1.0 if organ_id else 0.0, - "match_source": match_source, - "mapping_source": ( - "organ-age-inspired clinical systems based on " - "Oh et al. Nature 2023; single-label ICD-10 rules" - ), - } - ) - - fieldnames = [ - "token_id", - "label_code", - "label_name", - "organ_id", - "organ_label", - "organ_weight", - "match_source", - "mapping_source", - ] - with OUT.open("w", newline="", encoding="utf-8-sig") as f: - writer = csv.DictWriter(f, fieldnames=fieldnames) - writer.writeheader() - writer.writerows(rows) - - mapped = [row for row in rows if row["organ_id"]] - print(f"labels: {len(rows)}") - print(f"mapped_labels: {len(mapped)}") - print(f"unmapped_labels: {len(rows) - len(mapped)}") - print(f"organs: {', '.join(ORGANS)}") - print(f"output: {OUT}") - - -if __name__ == "__main__": - main() diff --git a/build_uk_hfrs_label_mapping.py b/build_uk_hfrs_label_mapping.py deleted file mode 100644 index 0fb62c9..0000000 --- a/build_uk_hfrs_label_mapping.py +++ /dev/null @@ -1,215 +0,0 @@ -from __future__ import annotations - -import csv -from pathlib import Path - - -LABELS = Path("labels.csv") -OUT = Path("uk_hfrs_label_mapping.csv") -MISSING_OUT = Path("uk_hfrs_missing_label_codes.csv") - - -# Source: Gilbert T, Neuburger J, Kraindler J, et al. Development and -# validation of a Hospital Frailty Risk Score focusing on older people in -# acute care settings using electronic hospital records. Lancet. 2018. -# Supplementary appendix, Table A2. -UK_HFRS_WEIGHTS = { - "F00": 7.1, - "G81": 4.4, - "G30": 4.0, - "I69": 3.7, - "R29": 3.6, - "N39": 3.2, - "F05": 3.2, - "W19": 3.2, - "S00": 3.2, - "R31": 3.0, - "B96": 2.9, - "R41": 2.7, - "R26": 2.6, - "I67": 2.6, - "R56": 2.6, - "R40": 2.5, - "T83": 2.4, - "S06": 2.4, - "S42": 2.3, - "E87": 2.3, - "M25": 2.3, - "E86": 2.3, - "R54": 2.2, - "Z50": 2.1, - "F03": 2.1, - "W18": 2.1, - "Z75": 2.0, - "F01": 2.0, - "S80": 2.0, - "L03": 2.0, - "H54": 1.9, - "E53": 1.9, - "Z60": 1.8, - "G20": 1.8, - "R55": 1.8, - "S22": 1.8, - "K59": 1.8, - "N17": 1.8, - "L89": 1.7, - "Z22": 1.7, - "B95": 1.7, - "L97": 1.6, - "R44": 1.6, - "K26": 1.6, - "I95": 1.6, - "N19": 1.6, - "A41": 1.6, - "Z87": 1.5, - "J96": 1.5, - "X59": 1.5, - "M19": 1.5, - "G40": 1.5, - "M81": 1.4, - "S72": 1.4, - "S32": 1.4, - "E16": 1.4, - "R94": 1.4, - "N18": 1.4, - "R33": 1.3, - "R69": 1.3, - "N28": 1.3, - "R32": 1.2, - "G31": 1.2, - "Y95": 1.2, - "S09": 1.2, - "R45": 1.2, - "G45": 1.2, - "Z74": 1.1, - "M79": 1.1, - "W06": 1.1, - "S01": 1.1, - "A04": 1.1, - "A09": 1.1, - "J18": 1.1, - "J69": 1.0, - "R47": 1.0, - "E55": 1.0, - "Z93": 1.0, - "R02": 1.0, - "R63": 0.9, - "H91": 0.9, - "W10": 0.9, - "W01": 0.9, - "E05": 0.9, - "M41": 0.9, - "R13": 0.8, - "Z99": 0.8, - "U80": 0.8, - "M80": 0.8, - "K92": 0.8, - "I63": 0.8, - "N20": 0.7, - "F10": 0.7, - "Y84": 0.7, - "R00": 0.7, - "J22": 0.7, - "Z73": 0.6, - "R79": 0.6, - "Z91": 0.5, - "S51": 0.5, - "F32": 0.5, - "M48": 0.5, - "E83": 0.4, - "M15": 0.4, - "D64": 0.4, - "L08": 0.4, - "R11": 0.3, - "K52": 0.3, - "R50": 0.1, -} - - -def _read_labels(path: Path) -> list[dict[str, str | int]]: - rows: list[dict[str, str | int]] = [] - with path.open(encoding="utf-8") as f: - for i, line in enumerate(f): - line = line.strip() - if not line: - continue - parts = line.split(maxsplit=1) - code = parts[0].strip().upper() - name = parts[1].strip() if len(parts) > 1 else "" - rows.append({"token_id": i + 3, "label_code": code, "label_name": name}) - return rows - - -def main() -> None: - labels = _read_labels(LABELS) - label_codes = {str(row["label_code"]) for row in labels} - missing = sorted(set(UK_HFRS_WEIGHTS) - label_codes) - - rows = [] - for row in labels: - code = str(row["label_code"]) - weight = float(UK_HFRS_WEIGHTS.get(code, 0.0)) - rows.append( - { - **row, - "hfrs_dimension_id": "hfrs_weighted_disease_expression", - "hfrs_dimension": "DeepHealth HFRS-weighted disease expression", - "hfrs_key_area": "UK-HFRS", - "hfrs_weight": weight, - "hfrs_source": ( - "Gilbert et al. Lancet 2018 supplementary appendix Table A2" - ), - "match_source": "exact_three_character_icd10" if weight else "not_in_hfrs", - } - ) - - fieldnames = [ - "token_id", - "label_code", - "label_name", - "hfrs_dimension_id", - "hfrs_dimension", - "hfrs_key_area", - "hfrs_weight", - "hfrs_source", - "match_source", - ] - with OUT.open("w", newline="", encoding="utf-8-sig") as f: - writer = csv.DictWriter(f, fieldnames=fieldnames) - writer.writeheader() - writer.writerows(rows) - - with MISSING_OUT.open("w", newline="", encoding="utf-8-sig") as f: - writer = csv.DictWriter( - f, - fieldnames=[ - "hfrs_source_code", - "hfrs_weight", - "missing_reason", - "hfrs_source", - ], - ) - writer.writeheader() - for code in missing: - writer.writerow( - { - "hfrs_source_code": code, - "hfrs_weight": UK_HFRS_WEIGHTS[code], - "missing_reason": "not_present_in_labels_csv", - "hfrs_source": ( - "Gilbert et al. Lancet 2018 supplementary appendix Table A2" - ), - } - ) - - nonzero = sum(1 for row in rows if float(row["hfrs_weight"]) != 0.0) - print(f"labels: {len(rows)}") - print(f"uk_hfrs_codes: {len(UK_HFRS_WEIGHTS)}") - print(f"matched_nonzero_labels: {nonzero}") - print(f"missing_hfrs_codes: {len(missing)}") - print(f"output: {OUT}") - print(f"missing_output: {MISSING_OUT}") - - -if __name__ == "__main__": - main() diff --git a/burden_index.py b/burden_index.py deleted file mode 100644 index a042009..0000000 --- a/burden_index.py +++ /dev/null @@ -1,407 +0,0 @@ -from __future__ import annotations - -from dataclasses import dataclass -from pathlib import Path -from typing import Any, Sequence - -import numpy as np -import torch -import torch.nn.functional as F - -from eval_data import load_sequence_eval_dataset -from evaluate_auc_v2 import ( - build_model_from_dataset, - load_checkpoint_state_dict, - load_json_config, - load_model_state, - resolve_dist_mode_for_checkpoint, - validate_dataset_metadata, -) -from targets import CHECKUP_IDX, NO_EVENT_IDX, PAD_IDX - - -@dataclass(frozen=True) -class DeepHealthContext: - model: torch.nn.Module - dataset: Any - cfg: dict[str, Any] - dist_mode: str - device: torch.device - run_path: Path - - -@dataclass(frozen=True) -class DiseaseExpressionResult: - disease_ids: np.ndarray - expression: np.ndarray - t_query: float - - -@dataclass(frozen=True) -class OrganInvolvementResult: - organ_ids: list[str] - involvement: np.ndarray - disease_ids: np.ndarray - expression: np.ndarray - t_query: float - - -@dataclass(frozen=True) -class FrailtyRiskResult: - frailty_risk_index: float - disease_ids: np.ndarray - expression: np.ndarray - weights: np.ndarray - t_query: float - - -def load_deephealth_context( - run_path: str | Path, - *, - device: str | torch.device | None = None, -) -> DeepHealthContext: - run_path = Path(run_path) - config_path = run_path / "train_config.json" - model_ckpt_path = run_path / "best_model.pt" - if not config_path.exists(): - raise FileNotFoundError(f"train_config.json not found in {run_path}") - if not model_ckpt_path.exists(): - raise FileNotFoundError(f"best_model.pt not found in {run_path}") - - cfg = load_json_config(config_path) - model_target_mode = str(cfg.get("model_target_mode", "next_token")).lower() - if model_target_mode == "next_token": - raise RuntimeError( - "Disease expression indices require an all_future checkpoint because " - "they use p_d(h, Delta). The provided run is model_target_mode='next_token'." - ) - if model_target_mode != "all_future": - raise ValueError( - "train_config.json model_target_mode must be all_future, got " - f"{model_target_mode!r}." - ) - - device_obj = torch.device( - device if device is not None else ("cuda" if torch.cuda.is_available() else "cpu") - ) - if device_obj.type == "cuda" and not torch.cuda.is_available(): - raise RuntimeError(f"Requested device {device_obj}, but CUDA is not available.") - - dataset = load_sequence_eval_dataset( - model_target_mode="all_future", - data_prefix=cfg.get("data_prefix", "ukb"), - labels_file=cfg.get("labels_file", "labels.csv"), - no_event_interval_years=float(cfg.get("no_event_interval_years", 5.0)), - include_no_event_in_uts_target=bool( - cfg.get("include_no_event_in_uts_target", False) - ), - min_history_events=int(cfg.get("all_future_min_history_events", 1)), - min_future_events=int(cfg.get("all_future_min_future_events", 1)), - extra_info_types=cfg.get("extra_info_types", None), - ) - validate_dataset_metadata(dataset, cfg) - - state_dict = load_checkpoint_state_dict(model_ckpt_path, map_location="cpu") - dist_mode = resolve_dist_mode_for_checkpoint( - str(cfg.get("dist_mode", "exponential")), - state_dict, - ) - if dist_mode not in {"exponential", "weibull", "mixed"}: - raise ValueError(f"Unsupported dist_mode={dist_mode!r}") - - cfg_model = dict(cfg) - cfg_model["dist_mode"] = dist_mode - model = build_model_from_dataset(_ConfigNamespace(), cfg_model, dataset) - load_model_state(model, state_dict) - model.eval().to(device_obj) - - return DeepHealthContext( - model=model, - dataset=dataset, - cfg=cfg, - dist_mode=dist_mode, - device=device_obj, - run_path=run_path, - ) - - -@torch.inference_mode() -def compute_disease_expression( - *, - run_path: str | Path, - disease_ids: Sequence[int] | np.ndarray, - event_seq: Sequence[int] | np.ndarray, - time_seq: Sequence[float] | np.ndarray, - sex: int, - other_type: Sequence[int] | np.ndarray, - other_value: Sequence[float] | np.ndarray, - other_value_kind: Sequence[int] | np.ndarray, - other_time: Sequence[float] | np.ndarray, - t_query: float, - device: str | torch.device | None = None, - context: DeepHealthContext | None = None, -) -> DiseaseExpressionResult: - ctx = context or load_deephealth_context(run_path, device=device) - disease_ids_arr = np.asarray(disease_ids, dtype=np.int64) - expression = model_implied_disease_expression( - ctx=ctx, - disease_ids=disease_ids_arr, - event_seq=event_seq, - time_seq=time_seq, - sex=sex, - other_type=other_type, - other_value=other_value, - other_value_kind=other_value_kind, - other_time=other_time, - t_query=float(t_query), - ) - return DiseaseExpressionResult( - disease_ids=disease_ids_arr.copy(), - expression=expression, - t_query=float(t_query), - ) - - -def compute_organ_involvement_from_expression( - *, - expression: Sequence[float] | np.ndarray, - organ_matrix: np.ndarray, -) -> np.ndarray: - z = np.asarray(expression, dtype=np.float64) - A = np.asarray(organ_matrix, dtype=np.float64) - if A.ndim != 2: - raise ValueError(f"organ_matrix must be 2D, got shape {A.shape}") - if z.ndim != 1 or A.shape[1] != z.size: - raise ValueError( - "expression must be 1D and match organ_matrix columns, got " - f"{z.shape} and {A.shape}" - ) - intensity = -np.log1p(-np.clip(z, 0.0, 1.0 - 1e-7)) - return -np.expm1(-(A @ intensity)) - - -def compute_frailty_risk_from_expression( - *, - expression: Sequence[float] | np.ndarray, - hfrs_weights: Sequence[float] | np.ndarray, -) -> float: - z = np.asarray(expression, dtype=np.float64) - w = np.asarray(hfrs_weights, dtype=np.float64) - if z.shape != w.shape: - raise ValueError(f"expression and hfrs_weights shape mismatch: {z.shape} vs {w.shape}") - return float(np.dot(w, z)) - - -@torch.inference_mode() -def model_implied_disease_expression( - *, - ctx: DeepHealthContext, - disease_ids: np.ndarray, - event_seq: Sequence[int] | np.ndarray, - time_seq: Sequence[float] | np.ndarray, - sex: int, - other_type: Sequence[int] | np.ndarray, - other_value: Sequence[float] | np.ndarray, - other_value_kind: Sequence[int] | np.ndarray, - other_time: Sequence[float] | np.ndarray, - t_query: float, -) -> np.ndarray: - disease_ids = np.asarray(disease_ids, dtype=np.int64) - _validate_disease_ids(ctx, disease_ids) - event_seq_arr, time_seq_arr = _validate_event_inputs(event_seq, time_seq) - other_type_arr, other_value_arr, other_value_kind_arr, other_time_arr = ( - _validate_other_inputs(other_type, other_value, other_value_kind, other_time) - ) - grid = build_readout_grid( - event_seq=event_seq_arr, - time_seq=time_seq_arr, - other_type=other_type_arr, - other_time=other_time_arr, - t_query=float(t_query), - ) - if grid.size == 0: - return np.zeros(disease_ids.size, dtype=np.float64) - - end_times = np.concatenate([grid[1:], np.asarray([t_query], dtype=np.float32)]) - deltas = np.maximum(end_times - grid, 0.0).astype(np.float32) - valid = deltas > 0 - if not np.any(valid): - return np.zeros(disease_ids.size, dtype=np.float64) - - hidden = query_hidden( - ctx=ctx, - event_seq=event_seq_arr, - time_seq=time_seq_arr, - sex=sex, - other_type=other_type_arr, - other_value=other_value_arr, - other_value_kind=other_value_kind_arr, - other_time=other_time_arr, - query_times=grid[valid].astype(np.float32), - ) - interval_prob = probabilities_from_hidden( - ctx=ctx, - hidden=hidden, - disease_ids=disease_ids, - deltas=deltas[valid], - ) - survival = np.prod(1.0 - np.clip(interval_prob, 0.0, 1.0), axis=0) - return (1.0 - survival).astype(np.float64, copy=False) - - -def build_readout_grid( - *, - event_seq: np.ndarray, - time_seq: np.ndarray, - other_type: np.ndarray, - other_time: np.ndarray, - t_query: float, -) -> np.ndarray: - event_mask = (event_seq > PAD_IDX) & (time_seq <= np.float32(t_query)) - other_mask = (other_type > 0) & (other_time <= np.float32(t_query)) - times = np.concatenate( - [ - time_seq[event_mask].astype(np.float32, copy=False), - other_time[other_mask].astype(np.float32, copy=False), - ] - ) - if times.size == 0: - return np.zeros(0, dtype=np.float32) - return np.unique(times) - - -@torch.inference_mode() -def query_hidden( - *, - ctx: DeepHealthContext, - event_seq: np.ndarray, - time_seq: np.ndarray, - sex: int, - other_type: np.ndarray, - other_value: np.ndarray, - other_value_kind: np.ndarray, - other_time: np.ndarray, - query_times: np.ndarray, -) -> torch.Tensor: - if query_times.ndim != 1: - raise ValueError("query_times must be 1D.") - batch_size = int(query_times.size) - if batch_size == 0: - return torch.empty(0, ctx.model.n_embd, device=ctx.device) - - event = torch.from_numpy(event_seq[None, :].repeat(batch_size, axis=0)).long() - times = torch.from_numpy(time_seq[None, :].repeat(batch_size, axis=0)).float() - other_t = torch.from_numpy(other_type[None, :].repeat(batch_size, axis=0)).long() - other_v = torch.from_numpy(other_value[None, :].repeat(batch_size, axis=0)).float() - other_k = torch.from_numpy( - other_value_kind[None, :].repeat(batch_size, axis=0) - ).long() - other_tm = torch.from_numpy(other_time[None, :].repeat(batch_size, axis=0)).float() - sex_t = torch.full((batch_size,), int(sex), dtype=torch.long) - tq = torch.from_numpy(query_times.astype(np.float32, copy=False)).float() - - event = event.to(ctx.device) - return ctx.model( - event_seq=event, - time_seq=times.to(ctx.device), - sex=sex_t.to(ctx.device), - padding_mask=event > PAD_IDX, - t_query=tq.to(ctx.device), - other_type=other_t.to(ctx.device), - other_value=other_v.to(ctx.device), - other_value_kind=other_k.to(ctx.device), - other_time=other_tm.to(ctx.device), - target_mode="all_future", - ) - - -@torch.inference_mode() -def probabilities_from_hidden( - *, - ctx: DeepHealthContext, - hidden: torch.Tensor, - disease_ids: np.ndarray, - deltas: np.ndarray, -) -> np.ndarray: - if hidden.ndim != 2: - raise ValueError(f"hidden must have shape (N, H), got {tuple(hidden.shape)}") - if deltas.ndim != 1 or deltas.size != hidden.shape[0]: - raise ValueError( - "deltas must be 1D with the same length as hidden rows, got " - f"{deltas.shape} vs {tuple(hidden.shape)}" - ) - ids = torch.as_tensor(disease_ids, dtype=torch.long, device=ctx.device) - logits = ctx.model.calc_risk(hidden)[:, ids] - rate = F.softplus(logits).clamp_min(1e-8) - delta_t = torch.as_tensor(deltas, dtype=rate.dtype, device=ctx.device).clamp_min(0) - - if ctx.dist_mode == "weibull": - rho = ctx.model.calc_weibull_rho(hidden)[:, ids] - exposure = torch.pow(delta_t[:, None], rho) - elif ctx.dist_mode == "mixed": - exposure = delta_t[:, None].expand_as(rate) - death_idx = int(getattr(ctx.model, "death_idx", getattr(ctx.model, "vocab_size", 0) - 1)) - death_cols = [j for j, token in enumerate(disease_ids.tolist()) if int(token) == death_idx] - if death_cols: - death_rho = ctx.model.calc_death_rho(hidden) - for col in death_cols: - exposure[:, int(col)] = torch.pow(delta_t, death_rho) - else: - exposure = delta_t[:, None].expand_as(rate) - - prob = -torch.expm1(-rate * exposure) - return prob.detach().cpu().numpy().astype(np.float64, copy=False) - - -class _ConfigNamespace: - def __getattr__(self, _name: str) -> None: - return None - - -def _validate_disease_ids(ctx: DeepHealthContext, disease_ids: np.ndarray) -> None: - if disease_ids.ndim != 1 or disease_ids.size == 0: - raise ValueError("disease_ids must be a non-empty 1D array.") - vocab_size = int(getattr(ctx.model, "vocab_size", ctx.model.risk_head.out_features)) - if np.any(disease_ids < 0) or np.any(disease_ids >= vocab_size): - raise ValueError(f"disease_ids must be in [0, {vocab_size}), got {disease_ids}") - - -def _validate_event_inputs( - event_seq: Sequence[int] | np.ndarray, - time_seq: Sequence[float] | np.ndarray, -) -> tuple[np.ndarray, np.ndarray]: - events = np.asarray(event_seq, dtype=np.int64) - times = np.asarray(time_seq, dtype=np.float32) - if events.ndim != 1 or times.ndim != 1: - raise ValueError("event_seq and time_seq must be 1D.") - if events.shape != times.shape: - raise ValueError( - f"event_seq and time_seq must have the same shape, got {events.shape} vs {times.shape}" - ) - if events.size == 0: - raise ValueError("event_seq must contain at least one token.") - if not np.all(np.isfinite(times)): - raise ValueError("time_seq contains non-finite values.") - return events, times - - -def _validate_other_inputs( - other_type: Sequence[int] | np.ndarray, - other_value: Sequence[float] | np.ndarray, - other_value_kind: Sequence[int] | np.ndarray, - other_time: Sequence[float] | np.ndarray, -) -> tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]: - typ = np.asarray(other_type, dtype=np.int64) - val = np.asarray(other_value, dtype=np.float32) - kind = np.asarray(other_value_kind, dtype=np.int64) - tm = np.asarray(other_time, dtype=np.float32) - if not (typ.shape == val.shape == kind.shape == tm.shape): - raise ValueError( - "other_type, other_value, other_value_kind, and other_time must " - f"have the same shape, got {typ.shape}, {val.shape}, {kind.shape}, {tm.shape}." - ) - if typ.ndim != 1: - raise ValueError("other_* inputs must be 1D.") - if not np.all(np.isfinite(tm)): - raise ValueError("other_time contains non-finite values.") - return typ, val, kind, tm diff --git a/burden_index_method.tex b/burden_index_method.tex deleted file mode 100644 index 6470276..0000000 --- a/burden_index_method.tex +++ /dev/null @@ -1,161 +0,0 @@ -\documentclass[11pt]{article} - -\usepackage[margin=1in]{geometry} -\usepackage{amsmath, amssymb} -\usepackage{booktabs} -\usepackage{enumitem} -\usepackage{hyperref} - -\title{DeepHealth Disease Expression, Organ Involvement, and Frailty Risk Indices} -\author{} -\date{} - -\begin{document} - -\maketitle - -\begin{abstract} -DeepHealth provides a query-time hidden state \(h(t)\) and disease-specific -risk functions \(p_d(h,\Delta)\). We use these outputs to define a continuous -disease expression rate \(z_d(t)\). This quantity should be interpreted as how -much disease \(d\) is model-implied to have formed or expressed by query time -\(t\), not as true physiological damage. Based on \(z_d(t)\), we define two -downstream indices: an organ involvement index, which summarizes whether an -organ-age-inspired clinical system is involved by any related disease process, -and a DeepHealth-HFRS frailty risk index, which is the original UK-HFRS weighted -sum with binary disease occurrence replaced by continuous disease expression. -\end{abstract} - -\section{Disease Expression Rate} - -For a patient queried at time \(t\), let the historical readout times be -\[ - t_0 < t_1 < \cdots < t_n \le t,\qquad t_{n+1}=t. -\] -For each interval \([t_i,t_{i+1}]\), DeepHealth produces a hidden state -\(h_i=h(t_i)\) and an interval risk -\[ - q_{d,i}(t)=p_d(h_i,t_{i+1}-t_i). -\] -The model-implied disease expression rate is defined by noisy-or accumulation: -\[ - z_d(t) - = - 1-\prod_{i=0}^{n}\left[1-q_{d,i}(t)\right]. -\] -Informally, \(z_d(t)\) is the degree to which disease \(d\) is expressed in the -patient by time \(t\). Unlike a raw diagnosis indicator, it is continuous and -can reflect heterogeneity within the same ICD label. - -\section{Organ Involvement Index} - -The organ index is not a frailty score, health reserve score, or organ age. It -is an organ involvement index. Let \(\mathcal{D}_k\) be the set of diseases -assigned to organ/system \(k\). Define disease expression intensity as -\[ - \Lambda_d(t)=-\log\left[1-z_d(t)\right]. -\] -The equal-weight organ involvement index is -\[ - O_k(t) - = - 1-\exp\left( - -\sum_{d\in\mathcal{D}_k}\Lambda_d(t) - \right). -\] -Equivalently, -\[ - O_k(t) - = - 1- - \prod_{d\in\mathcal{D}_k} - \left[1-z_d(t)\right]. -\] -Thus \(O_k(t)\in[0,1]\) is the probability-like degree to which organ/system -\(k\) is involved by at least one related disease process. In the current -version all diseases assigned to the same organ are equally weighted; this is a -first-stage structural definition. Future versions can introduce -organ-specific disease weights \(\alpha_{k,d}\): -\[ - O_k(t) - = - 1-\exp\left( - -\sum_{d\in\mathcal{D}_k}\alpha_{k,d}\Lambda_d(t) - \right). -\] - -\section{Organ List} - -The organ/system categories are inspired by organ-age studies, especially -organ-specific plasma proteomic aging models, and are adapted to ICD disease -labels. The current list is: -\begin{center} -\begin{tabular}{ll} -\toprule -ID & Label \\ -\midrule -brain\_neurologic & Brain and neurologic system \\ -heart & Heart \\ -artery\_vascular & Artery and vascular system \\ -immune & Immune and infection-related system \\ -intestine\_digestive & Intestine and digestive system \\ -kidney & Kidney and urinary system \\ -liver & Liver \\ -lung & Lung and respiratory system \\ -muscle\_musculoskeletal & Muscle and musculoskeletal system \\ -pancreas\_endocrine & Pancreas and endocrine system \\ -adipose\_metabolic & Adipose and metabolic system \\ -female\_reproductive & Female reproductive system \\ -male\_reproductive & Male reproductive system \\ -neoplasm & Neoplasm \\ -\bottomrule -\end{tabular} -\end{center} -The neoplasm category is retained as a disease-system category rather than -forced into a single anatomical organ. Sex-specific reproductive diseases are -separated into female and male reproductive systems. - -\section{DeepHealth-HFRS Frailty Risk Index} - -The original UK-HFRS is a weighted sum over binary disease occurrence: -\[ - \operatorname{HFRS}^{\mathrm{obs}}(t) - = - \sum_{d\in\mathcal{D}_{\mathrm{HFRS}}} - w^{\mathrm{HFRS}}_d\,o_d(t), - \qquad - o_d(t)\in\{0,1\}. -\] -DeepHealth-HFRS keeps the published UK-HFRS weights and replaces the binary -disease state with the continuous DeepHealth disease expression rate: -\[ - \operatorname{HFRS}^{\mathrm{DH}}(t) - = - \sum_{d\in\mathcal{D}_{\mathrm{HFRS}}} - w^{\mathrm{HFRS}}_d\,z_d(t), - \qquad - z_d(t)\in[0,1]. -\] -This is a natural continuous extension of the original HFRS, so it can still be -called a frailty risk index. The semantic change is not the HFRS weight system; -the change is the disease state variable. - -\section{Current Implementation} - -The current code computes historical current-state indices only. No future -horizon is used. For each landmark age \(t\), it outputs: -\begin{itemize}[leftmargin=*] - \item \(z_d(t)\) internally as model-implied disease expression; - \item \(O_k(t)\) as equal-weight organ involvement; - \item \(\operatorname{HFRS}^{\mathrm{DH}}(t)\) as DeepHealth-HFRS frailty - risk. -\end{itemize} -The output table uses the columns -\[ - \texttt{index\_type},\quad - \texttt{index\_id},\quad - \texttt{index\_label},\quad - \texttt{index\_value}. -\] - -\end{document} diff --git a/burden_index_method_zh.tex b/burden_index_method_zh.tex deleted file mode 100644 index ff29975..0000000 --- a/burden_index_method_zh.tex +++ /dev/null @@ -1,142 +0,0 @@ -\documentclass[11pt]{ctexart} - -\usepackage[margin=1in]{geometry} -\usepackage{amsmath, amssymb} -\usepackage{booktabs} -\usepackage{enumitem} -\usepackage{hyperref} - -\title{DeepHealth 疾病表达率、器官受累指数与衰弱风险指数} -\author{} -\date{} - -\begin{document} - -\maketitle - -\begin{abstract} -DeepHealth 在查询时刻 \(t\) 输出隐含状态 \(h(t)\),并给出疾病风险函数 -\(p_d(h,\Delta)\)。我们首先定义连续的疾病表达率 \(z_d(t)\):它表示模型认为疾病 \(d\) -截至 \(t\) 在该个体身上形成或表达了多少,而不是疾病造成的真实损害。基于 \(z_d(t)\), -本文定义两类指数:器官受累指数和 DeepHealth-HFRS 衰弱风险指数。前者表示器官/系统是否被相关疾病过程累及; -后者是原版 UK-HFRS 的自然连续化,即用连续疾病表达率替代二值疾病发生状态。 -\end{abstract} - -\section{疾病表达率} - -设历史 readout 时间为 -\[ - t_0 < t_1 < \cdots < t_n \le t,\qquad t_{n+1}=t. -\] -在区间 \([t_i,t_{i+1}]\) 上,模型给出疾病 \(d\) 的区间风险 -\[ - q_{d,i}(t)=p_d(h(t_i),t_{i+1}-t_i). -\] -疾病表达率定义为 -\[ - z_d(t) - = - 1-\prod_{i=0}^{n}\left[1-q_{d,i}(t)\right]. -\] -直观上,\(z_d(t)\) 表示“这个病在该个体身上形成或表达了多少”。它不是二值诊断记录, -因此可以表达同一 ICD 标签下的个体异质性。 - -\section{器官受累指数} - -器官指数不定义为器官年龄、器官健康储备或器官衰弱,而定义为器官受累指数。设 \(\mathcal{D}_k\) -是归属于器官/系统 \(k\) 的疾病集合。定义疾病表达强度 -\[ - \Lambda_d(t)=-\log\left[1-z_d(t)\right]. -\] -当前版本使用等权器官受累定义: -\[ - O_k(t) - = - 1-\exp\left( - -\sum_{d\in\mathcal{D}_k}\Lambda_d(t) - \right), -\] -等价于 -\[ - O_k(t) - = - 1- - \prod_{d\in\mathcal{D}_k} - \left[1-z_d(t)\right]. -\] -因此 \(O_k(t)\in[0,1]\),表示器官/系统 \(k\) 被至少一个相关疾病过程累及的概率型程度。 -当前所有疾病在同一器官内等权;后续可扩展为带疾病权重的形式: -\[ - O_k(t) - = - 1-\exp\left( - -\sum_{d\in\mathcal{D}_k}\alpha_{k,d}\Lambda_d(t) - \right). -\] - -\section{器官列表} - -当前器官/系统列表参考器官年龄研究中的 organ-age-inspired systems,并结合 ICD 疾病标签空间调整: -\begin{center} -\begin{tabular}{ll} -\toprule -ID & 含义 \\ -\midrule -brain\_neurologic & 脑与神经系统 \\ -heart & 心脏 \\ -artery\_vascular & 动脉与血管系统 \\ -immune & 免疫与感染相关系统 \\ -intestine\_digestive & 肠道与消化系统 \\ -kidney & 肾脏与泌尿系统 \\ -liver & 肝脏 \\ -lung & 肺与呼吸系统 \\ -muscle\_musculoskeletal & 肌肉骨骼系统 \\ -pancreas\_endocrine & 胰腺与内分泌系统 \\ -adipose\_metabolic & 脂肪与代谢系统 \\ -female\_reproductive & 女性生殖系统 \\ -male\_reproductive & 男性生殖系统 \\ -neoplasm & 肿瘤 \\ -\bottomrule -\end{tabular} -\end{center} -肿瘤作为疾病系统单独保留,不强行归入某个单一器官。男女生殖系统单独拆分。 - -\section{DeepHealth-HFRS 衰弱风险指数} - -原版 UK-HFRS 是二值疾病发生状态的加权和: -\[ - \operatorname{HFRS}^{\mathrm{obs}}(t) - = - \sum_{d\in\mathcal{D}_{\mathrm{HFRS}}} - w^{\mathrm{HFRS}}_d o_d(t), - \qquad - o_d(t)\in\{0,1\}. -\] -DeepHealth-HFRS 保留原版 UK-HFRS 权重,只把疾病状态从二值观测替换为连续疾病表达率: -\[ - \operatorname{HFRS}^{\mathrm{DH}}(t) - = - \sum_{d\in\mathcal{D}_{\mathrm{HFRS}}} - w^{\mathrm{HFRS}}_d z_d(t), - \qquad - z_d(t)\in[0,1]. -\] -因此 DeepHealth-HFRS 仍然可以称为衰弱风险指数;它是原版 HFRS 的自然连续化。 - -\section{当前实现} - -当前代码只计算历史当前状态,不再使用未来 horizon。每个 landmark age \(t\) 输出: -\begin{itemize}[leftmargin=*] - \item 内部疾病表达率 \(z_d(t)\); - \item 等权器官受累指数 \(O_k(t)\); - \item DeepHealth-HFRS 衰弱风险指数 \(\operatorname{HFRS}^{\mathrm{DH}}(t)\)。 -\end{itemize} -输出表使用 -\[ - \texttt{index\_type},\quad - \texttt{index\_id},\quad - \texttt{index\_label},\quad - \texttt{index\_value}. -\] - -\end{document} diff --git a/compute_deephealth_indices_landmarks.py b/compute_deephealth_indices_landmarks.py deleted file mode 100644 index d5657d7..0000000 --- a/compute_deephealth_indices_landmarks.py +++ /dev/null @@ -1,717 +0,0 @@ -from __future__ import annotations - -import argparse -import multiprocessing as mp -import time -from concurrent.futures import ProcessPoolExecutor, as_completed -from pathlib import Path -from typing import Any, Iterable - -import numpy as np -import pandas as pd -import torch -from torch.nn.utils.rnn import pad_sequence -from torch.utils.data import DataLoader, IterableDataset, get_worker_info -from tqdm.auto import tqdm - -from burden_index import ( - build_readout_grid, - load_deephealth_context, - probabilities_from_hidden, -) -from evaluate_auc_v2 import make_eval_indices, parse_float_list -from targets import CHECKUP_IDX, NO_EVENT_IDX, PAD_IDX - - -def _parse_landmark_ages(args: argparse.Namespace) -> np.ndarray: - explicit = parse_float_list(args.landmark_ages) - if explicit: - ages = np.asarray(explicit, dtype=np.float32) - else: - ages = np.arange( - float(args.landmark_start), - float(args.landmark_stop) + 1e-6, - float(args.landmark_step), - dtype=np.float32, - ) - if ages.size == 0: - raise ValueError("No landmark ages were provided.") - return ages - - -def _parse_devices(args: argparse.Namespace) -> list[str | None]: - if args.devices is not None and str(args.devices).strip(): - devices = [x.strip() for x in str(args.devices).split(",") if x.strip()] - if not devices: - raise ValueError("--devices was provided but no devices were parsed.") - return devices - return [args.device] - - -def _load_index_matrices( - *, - organ_mapping_csv: Path, - hfrs_mapping_csv: Path, -) -> tuple[np.ndarray, list[dict[str, Any]], dict[str, Any]]: - organ_df = pd.read_csv(organ_mapping_csv) - organ_required = {"token_id", "organ_id", "organ_label", "organ_weight"} - missing = sorted(organ_required - set(organ_df.columns)) - if missing: - raise ValueError(f"{organ_mapping_csv} is missing required columns: {missing}") - organ_df = organ_df.copy() - organ_df["token_id"] = pd.to_numeric(organ_df["token_id"], errors="raise").astype(int) - organ_df["organ_weight"] = pd.to_numeric( - organ_df["organ_weight"], errors="raise" - ).astype(float) - organ_df = organ_df[(organ_df["organ_id"].astype(str) != "") & (organ_df["organ_weight"] > 0)] - if organ_df.empty: - raise ValueError(f"{organ_mapping_csv} has no mapped organ rows.") - - hfrs_df = pd.read_csv(hfrs_mapping_csv) - hfrs_required = {"token_id", "hfrs_weight"} - missing = sorted(hfrs_required - set(hfrs_df.columns)) - if missing: - raise ValueError(f"{hfrs_mapping_csv} is missing required columns: {missing}") - hfrs_df = hfrs_df.copy() - hfrs_df["token_id"] = pd.to_numeric(hfrs_df["token_id"], errors="raise").astype(int) - hfrs_df["hfrs_weight"] = pd.to_numeric( - hfrs_df["hfrs_weight"], errors="raise" - ).astype(float) - hfrs_df = hfrs_df[hfrs_df["hfrs_weight"] > 0] - if hfrs_df.empty: - raise ValueError(f"{hfrs_mapping_csv} has no non-zero HFRS weights.") - - union_disease_ids = np.asarray( - sorted( - set(organ_df["token_id"].astype(int).tolist()) - | set(hfrs_df["token_id"].astype(int).tolist()) - ), - dtype=np.int64, - ) - union_pos = {int(token): i for i, token in enumerate(union_disease_ids.tolist())} - - organ_ids = sorted(organ_df["organ_id"].astype(str).unique().tolist()) - organ_pos = {organ_id: i for i, organ_id in enumerate(organ_ids)} - organ_matrix = np.zeros((len(organ_ids), union_disease_ids.size), dtype=np.float32) - organ_meta_by_id = {} - for _, row in organ_df.iterrows(): - organ_id = str(row["organ_id"]) - token = int(row["token_id"]) - organ_matrix[organ_pos[organ_id], union_pos[token]] = 1.0 - organ_meta_by_id.setdefault( - organ_id, - { - "index_type": "organ_involvement", - "index_id": organ_id, - "index_label": str(row["organ_label"]), - }, - ) - organ_meta = [organ_meta_by_id[organ_id] for organ_id in organ_ids] - - hfrs_weights = np.zeros(union_disease_ids.size, dtype=np.float32) - for _, row in hfrs_df.iterrows(): - hfrs_weights[union_pos[int(row["token_id"])]] = float(row["hfrs_weight"]) - hfrs_meta = { - "index_type": "frailty_risk", - "index_id": "deephealth_hfrs", - "index_label": "DeepHealth-HFRS frailty risk index", - } - - matrices = [ - { - "kind": "organ_involvement", - "matrix": organ_matrix, - "meta": organ_meta, - }, - { - "kind": "frailty_risk", - "weights": hfrs_weights, - "meta": hfrs_meta, - }, - ] - return union_disease_ids, matrices, { - "organ_mapped_tokens": int(organ_df["token_id"].nunique()), - "hfrs_mapped_tokens": int(hfrs_df["token_id"].nunique()), - } - - -def _config_split_indices( - n: int, - cfg: dict[str, Any], - eval_split: str, - subset_size: int, -) -> np.ndarray: - args = argparse.Namespace( - train_ratio=None, - val_ratio=None, - test_ratio=None, - seed=None, - eval_split=eval_split, - dataset_subset_size=subset_size if subset_size > 0 else None, - ) - - class _Sized: - def __len__(self) -> int: - return n - - return make_eval_indices(_Sized(), args, cfg) - - -def _eligible_landmark_rows( - dataset: Any, - subset_indices: np.ndarray, - landmark_ages: np.ndarray, - *, - min_history_events: int, -) -> list[dict[str, Any]]: - rows: list[dict[str, Any]] = [] - special = np.asarray([PAD_IDX, CHECKUP_IDX, NO_EVENT_IDX], dtype=np.int64) - for patient_id, dataset_index in enumerate(subset_indices.tolist()): - sample = dataset.samples[int(dataset_index)] - seq_event = np.asarray(sample["event_seq"], dtype=np.int64) - seq_time = np.asarray(sample["time_seq"], dtype=np.float32) - tgt_event = np.asarray(sample["target_event_seq"], dtype=np.int64) - tgt_time = np.asarray(sample["target_time_seq"], dtype=np.float32) - if seq_event.size == 0 or tgt_event.size == 0: - continue - - full_event = np.concatenate([seq_event, tgt_event[-1:]]) - full_time = np.concatenate([seq_time, tgt_time[-1:]]) - followup_end = float(np.max(full_time)) - - for landmark_age in landmark_ages.tolist(): - t_query = np.float32(float(landmark_age)) - if not (followup_end > float(t_query)): - continue - prefix_mask = full_time <= t_query - if not np.any(prefix_mask): - continue - prefix_events = full_event[prefix_mask].astype(np.int64, copy=False) - valid_history = ~np.isin(prefix_events, special) - if int(valid_history.sum()) < int(min_history_events): - continue - rows.append( - { - "patient_id": int(patient_id), - "dataset_index": int(dataset_index), - "sex": int(sample["sex"]), - "landmark_age": t_query, - "t_query": t_query, - "followup_end_time": np.float32(followup_end), - "event_seq": prefix_events, - "time_seq": full_time[prefix_mask].astype(np.float32, copy=False), - "other_type": np.asarray(sample["other_type"], dtype=np.int64), - "other_value": np.asarray(sample["other_value"], dtype=np.float32), - "other_value_kind": np.asarray(sample["other_value_kind"], dtype=np.int64), - "other_time": np.asarray(sample["other_time"], dtype=np.float32), - } - ) - return rows - - -def _row_to_worker_spec(row: dict[str, Any]) -> dict[str, Any]: - return { - "patient_id": int(row["patient_id"]), - "dataset_index": int(row["dataset_index"]), - "landmark_age": float(row["landmark_age"]), - "followup_end_time": float(row["followup_end_time"]), - } - - -def _materialize_worker_rows( - dataset: Any, - row_specs: list[dict[str, Any]], -) -> list[dict[str, Any]]: - rows: list[dict[str, Any]] = [] - for spec in row_specs: - sample = dataset.samples[int(spec["dataset_index"])] - seq_event = np.asarray(sample["event_seq"], dtype=np.int64) - seq_time = np.asarray(sample["time_seq"], dtype=np.float32) - tgt_event = np.asarray(sample["target_event_seq"], dtype=np.int64) - tgt_time = np.asarray(sample["target_time_seq"], dtype=np.float32) - full_event = np.concatenate([seq_event, tgt_event[-1:]]) - full_time = np.concatenate([seq_time, tgt_time[-1:]]) - t_query = np.float32(float(spec["landmark_age"])) - prefix_mask = full_time <= t_query - rows.append( - { - "patient_id": int(spec["patient_id"]), - "dataset_index": int(spec["dataset_index"]), - "sex": int(sample["sex"]), - "landmark_age": t_query, - "t_query": t_query, - "followup_end_time": np.float32(float(spec["followup_end_time"])), - "event_seq": full_event[prefix_mask].astype(np.int64, copy=False), - "time_seq": full_time[prefix_mask].astype(np.float32, copy=False), - "other_type": np.asarray(sample["other_type"], dtype=np.int64), - "other_value": np.asarray(sample["other_value"], dtype=np.float32), - "other_value_kind": np.asarray(sample["other_value_kind"], dtype=np.int64), - "other_time": np.asarray(sample["other_time"], dtype=np.float32), - } - ) - return rows - - -class HistoricalReadoutDataset(IterableDataset): - def __init__(self, rows: list[dict[str, Any]]) -> None: - super().__init__() - self.rows = rows - - def __iter__(self) -> Iterable[dict[str, torch.Tensor]]: - worker = get_worker_info() - if worker is None: - start, step = 0, 1 - else: - start, step = int(worker.id), int(worker.num_workers) - - for row_idx in range(start, len(self.rows), step): - row = self.rows[row_idx] - grid = build_readout_grid( - event_seq=row["event_seq"], - time_seq=row["time_seq"], - other_type=row["other_type"], - other_time=row["other_time"], - t_query=float(row["t_query"]), - ) - if grid.size == 0: - continue - end_times = np.concatenate([grid[1:], np.asarray([row["t_query"]], dtype=np.float32)]) - deltas = np.maximum(end_times - grid, 0.0).astype(np.float32) - valid = deltas > 0 - for query_time, delta in zip(grid[valid].tolist(), deltas[valid].tolist()): - yield _make_readout_job(row, row_idx, query_time, delta) - - -def _make_readout_job( - row: dict[str, Any], - row_idx: int, - query_time: float, - delta: float, -) -> dict[str, torch.Tensor]: - return { - "event_seq": torch.from_numpy(np.asarray(row["event_seq"], dtype=np.int64)).long(), - "time_seq": torch.from_numpy(np.asarray(row["time_seq"], dtype=np.float32)).float(), - "sex": torch.tensor(int(row["sex"]), dtype=torch.long), - "other_type": torch.from_numpy(np.asarray(row["other_type"], dtype=np.int64)).long(), - "other_value": torch.from_numpy(np.asarray(row["other_value"], dtype=np.float32)).float(), - "other_value_kind": torch.from_numpy( - np.asarray(row["other_value_kind"], dtype=np.int64) - ).long(), - "other_time": torch.from_numpy(np.asarray(row["other_time"], dtype=np.float32)).float(), - "query_time": torch.tensor(float(query_time), dtype=torch.float32), - "delta": torch.tensor(float(delta), dtype=torch.float32), - "row_idx": torch.tensor(int(row_idx), dtype=torch.long), - } - - -def _collate_readout_jobs(batch: list[dict[str, torch.Tensor]]) -> dict[str, torch.Tensor]: - event_seq = pad_sequence( - [x["event_seq"] for x in batch], batch_first=True, padding_value=PAD_IDX - ) - return { - "event_seq": event_seq, - "time_seq": pad_sequence( - [x["time_seq"] for x in batch], batch_first=True, padding_value=0.0 - ), - "padding_mask": event_seq > PAD_IDX, - "sex": torch.stack([x["sex"] for x in batch]), - "other_type": pad_sequence( - [x["other_type"] for x in batch], batch_first=True, padding_value=0 - ), - "other_value": pad_sequence( - [x["other_value"] for x in batch], batch_first=True, padding_value=0.0 - ), - "other_value_kind": pad_sequence( - [x["other_value_kind"] for x in batch], batch_first=True, padding_value=0 - ), - "other_time": pad_sequence( - [x["other_time"] for x in batch], batch_first=True, padding_value=0.0 - ), - "query_time": torch.stack([x["query_time"] for x in batch]), - "delta": torch.stack([x["delta"] for x in batch]), - "row_idx": torch.stack([x["row_idx"] for x in batch]), - } - - -@torch.inference_mode() -def _readout_probabilities( - *, - ctx: Any, - batch: dict[str, torch.Tensor], - disease_ids: np.ndarray, -) -> torch.Tensor: - event = batch["event_seq"].long().to(ctx.device, non_blocking=True) - hidden = ctx.model( - event_seq=event, - time_seq=batch["time_seq"].float().to(ctx.device, non_blocking=True), - sex=batch["sex"].long().to(ctx.device, non_blocking=True), - padding_mask=event > PAD_IDX, - t_query=batch["query_time"].float().to(ctx.device, non_blocking=True), - other_type=batch["other_type"].long().to(ctx.device, non_blocking=True), - other_value=batch["other_value"].float().to(ctx.device, non_blocking=True), - other_value_kind=batch["other_value_kind"].long().to(ctx.device, non_blocking=True), - other_time=batch["other_time"].float().to(ctx.device, non_blocking=True), - target_mode="all_future", - ) - deltas = batch["delta"].detach().cpu().numpy().astype(np.float32, copy=False) - prob = probabilities_from_hidden( - ctx=ctx, - hidden=hidden, - disease_ids=disease_ids, - deltas=deltas, - ) - return torch.as_tensor(prob, dtype=torch.float32, device=ctx.device) - - -def _project_rows( - *, - rows: list[dict[str, Any]], - survival_by_row: torch.Tensor, - matrices: list[dict[str, Any]], - ctx: Any, -) -> list[dict[str, Any]]: - disease_expression = 1.0 - survival_by_row.clamp(0.0, 1.0) - disease_intensity = -torch.log(survival_by_row.clamp(1e-7, 1.0)) - out: list[dict[str, Any]] = [] - - organ_matrix = torch.as_tensor( - matrices[0]["matrix"], dtype=torch.float32, device=ctx.device - ) - organ_values = -torch.expm1(-torch.matmul(disease_intensity, organ_matrix.T)) - organ_values_np = organ_values.detach().cpu().numpy() - - hfrs_weights = torch.as_tensor( - matrices[1]["weights"], dtype=torch.float32, device=ctx.device - ) - hfrs_values = torch.matmul(disease_expression, hfrs_weights) - hfrs_values_np = hfrs_values.detach().cpu().numpy() - - for row_idx, row in enumerate(rows): - base = { - "patient_id": row["patient_id"], - "dataset_index": row["dataset_index"], - "sex": row["sex"], - "landmark_age": float(row["landmark_age"]), - "t_query": float(row["t_query"]), - "followup_end_time": float(row["followup_end_time"]), - } - for dim_idx, meta in enumerate(matrices[0]["meta"]): - out.append( - { - **base, - "index_type": meta["index_type"], - "index_id": meta["index_id"], - "index_label": meta["index_label"], - "index_value": float(organ_values_np[row_idx, dim_idx]), - } - ) - out.append( - { - **base, - "index_type": matrices[1]["meta"]["index_type"], - "index_id": matrices[1]["meta"]["index_id"], - "index_label": matrices[1]["meta"]["index_label"], - "index_value": float(hfrs_values_np[row_idx]), - } - ) - return out - - -def _compute_rows( - *, - rows: list[dict[str, Any]], - disease_ids: np.ndarray, - matrices: list[dict[str, Any]], - readout_batch_size: int, - num_workers: int, - ctx: Any, - log_prefix: str, -) -> tuple[list[dict[str, Any]], int, dict[str, float]]: - survival_by_row = torch.ones( - (len(rows), disease_ids.size), dtype=torch.float32, device=ctx.device - ) - loader = DataLoader( - HistoricalReadoutDataset(rows), - batch_size=max(1, int(readout_batch_size)), - collate_fn=_collate_readout_jobs, - num_workers=max(0, int(num_workers)), - pin_memory=ctx.device.type == "cuda", - persistent_workers=int(num_workers) > 0, - prefetch_factor=2 if int(num_workers) > 0 else None, - ) - readout_jobs = 0 - n_batches = 0 - forward_sec = 0.0 - reduce_sec = 0.0 - for batch in loader: - t0 = time.perf_counter() - prob = _readout_probabilities(ctx=ctx, batch=batch, disease_ids=disease_ids) - if ctx.device.type == "cuda": - torch.cuda.synchronize(ctx.device) - forward_sec += time.perf_counter() - t0 - - t1 = time.perf_counter() - row_indices = batch["row_idx"].long().to(ctx.device, non_blocking=True) - interval_survival = 1.0 - prob.clamp(0.0, 1.0) - if hasattr(survival_by_row, "scatter_reduce_"): - survival_by_row.scatter_reduce_( - dim=0, - index=row_indices[:, None].expand_as(interval_survival), - src=interval_survival, - reduce="prod", - include_self=True, - ) - else: - for job_idx in range(interval_survival.shape[0]): - survival_by_row[int(row_indices[job_idx].item())] *= interval_survival[job_idx] - if ctx.device.type == "cuda": - torch.cuda.synchronize(ctx.device) - reduce_sec += time.perf_counter() - t1 - - n_batches += 1 - readout_jobs += int(batch["row_idx"].numel()) - if n_batches == 1 or n_batches % 50 == 0: - print( - f"{log_prefix} processed {readout_jobs} readout jobs in {n_batches} batches", - flush=True, - ) - - t2 = time.perf_counter() - out = _project_rows( - rows=rows, - survival_by_row=survival_by_row, - matrices=matrices, - ctx=ctx, - ) - if ctx.device.type == "cuda": - torch.cuda.synchronize(ctx.device) - reduce_sec += time.perf_counter() - t2 - return out, readout_jobs, {"forward_sec": forward_sec, "reduce_sec": reduce_sec} - - -def _write_rows_csv(rows: list[dict[str, Any]], output_path: Path) -> int: - df = pd.DataFrame(rows) - df.to_csv(output_path, index=False) - return int(len(df)) - - -def _concat_csv_shards(shard_paths: list[Path], output_path: Path) -> None: - wrote_header = False - with output_path.open("w", encoding="utf-8", newline="") as out_f: - for shard_path in shard_paths: - with shard_path.open("r", encoding="utf-8", newline="") as in_f: - header = in_f.readline() - if not wrote_header: - out_f.write(header) - wrote_header = True - for line in in_f: - out_f.write(line) - shard_path.unlink(missing_ok=True) - - -def _estimate_jobs(row: dict[str, Any]) -> int: - grid = build_readout_grid( - event_seq=row["event_seq"], - time_seq=row["time_seq"], - other_type=row["other_type"], - other_time=row["other_time"], - t_query=float(row["t_query"]), - ) - if grid.size == 0: - return 1 - end_times = np.concatenate([grid[1:], np.asarray([row["t_query"]], dtype=np.float32)]) - return max(int(np.sum(np.maximum(end_times - grid, 0.0) > 0)), 1) - - -def _split_rows(rows: list[dict[str, Any]], devices: list[str | None]) -> list[tuple[str | None, list[dict[str, Any]]]]: - if len(devices) <= 1: - return [(devices[0], rows)] - buckets: list[list[dict[str, Any]]] = [[] for _ in devices] - loads = np.zeros(len(devices), dtype=np.int64) - for row in sorted(rows, key=_estimate_jobs, reverse=True): - idx = int(np.argmin(loads)) - buckets[idx].append(row) - loads[idx] += _estimate_jobs(row) - return [(device, bucket) for device, bucket in zip(devices, buckets) if bucket] - - -def _worker(payload: dict[str, Any]) -> dict[str, Any]: - device = payload["device"] - shard_path = Path(payload["shard_path"]) - print(f"[Index worker {device}] starting with {len(payload['row_specs'])} rows", flush=True) - ctx = load_deephealth_context(payload["run_path"], device=device) - rows = _materialize_worker_rows(ctx.dataset, payload["row_specs"]) - out, readout_jobs, timings = _compute_rows( - rows=rows, - disease_ids=payload["disease_ids"], - matrices=payload["matrices"], - readout_batch_size=int(payload["readout_batch_size"]), - num_workers=int(payload["num_workers"]), - ctx=ctx, - log_prefix=f"[Index worker {device}]", - ) - t0 = time.perf_counter() - row_count = _write_rows_csv(out, shard_path) - timings["write_csv_sec"] = time.perf_counter() - t0 - print(f"[Index worker {device}] wrote {row_count} rows to {shard_path}", flush=True) - return { - "shard_path": str(shard_path), - "row_count": row_count, - "readout_jobs": readout_jobs, - "timings": timings, - } - - -def main() -> None: - parser = argparse.ArgumentParser( - description="Compute DeepHealth organ involvement and frailty risk indices." - ) - parser.add_argument("--run_path", type=str, required=True) - parser.add_argument( - "--organ_mapping_csv", - type=str, - default="organ_involvement_label_mapping.csv", - ) - parser.add_argument("--hfrs_mapping_csv", type=str, default="uk_hfrs_label_mapping.csv") - parser.add_argument("--output_path", type=str, default=None) - parser.add_argument( - "--eval_split", - type=str, - default="test", - choices=["train", "val", "valid", "validation", "test", "all"], - ) - parser.add_argument("--landmark_ages", type=str, default=None) - parser.add_argument("--landmark_start", type=float, default=40.0) - parser.add_argument("--landmark_stop", type=float, default=80.0) - parser.add_argument("--landmark_step", type=float, default=5.0) - parser.add_argument("--min_history_events", type=int, default=1) - parser.add_argument("--dataset_subset_size", type=int, default=0) - parser.add_argument("--readout_batch_size", type=int, default=8192) - parser.add_argument("--num_workers", type=int, default=4) - parser.add_argument("--device", type=str, default=None) - parser.add_argument("--devices", type=str, default=None) - parser.add_argument( - "--mp_start_method", - type=str, - default="fork", - choices=["fork", "forkserver"], - ) - args = parser.parse_args() - - run_path = Path(args.run_path) - devices = _parse_devices(args) - initial_device = "cpu" if len(devices) > 1 else devices[0] - ctx = load_deephealth_context(run_path, device=initial_device) - - disease_ids, matrices, mapping_counts = _load_index_matrices( - organ_mapping_csv=Path(args.organ_mapping_csv), - hfrs_mapping_csv=Path(args.hfrs_mapping_csv), - ) - landmark_ages = _parse_landmark_ages(args) - eval_split = str(args.eval_split).lower() - if eval_split in {"valid", "validation"}: - eval_split = "val" - subset_indices = _config_split_indices( - len(ctx.dataset), - ctx.cfg, - eval_split, - int(args.dataset_subset_size), - ) - rows = _eligible_landmark_rows( - ctx.dataset, - subset_indices, - landmark_ages, - min_history_events=int(args.min_history_events), - ) - if not rows: - raise RuntimeError("No eligible landmark rows.") - - output_path = Path(args.output_path) if args.output_path else ( - run_path / f"deephealth_indices_{eval_split}.csv" - ) - output_path.parent.mkdir(parents=True, exist_ok=True) - - chunks = _split_rows(rows, devices) - for device, chunk in chunks: - print( - f"Assigned {len(chunk)} rows / ~{sum(_estimate_jobs(r) for r in chunk)} " - f"readout jobs to {device}", - flush=True, - ) - - total_readout_jobs = 0 - timings = {"forward_sec": 0.0, "reduce_sec": 0.0, "write_csv_sec": 0.0} - if len(chunks) == 1: - out, total_readout_jobs, chunk_timings = _compute_rows( - rows=rows, - disease_ids=disease_ids, - matrices=matrices, - readout_batch_size=int(args.readout_batch_size), - num_workers=int(args.num_workers), - ctx=ctx, - log_prefix="[Index main]", - ) - for key, value in chunk_timings.items(): - timings[key] += float(value) - t0 = time.perf_counter() - _write_rows_csv(out, output_path) - timings["write_csv_sec"] = time.perf_counter() - t0 - else: - del ctx - payloads = [ - { - "device": device, - "run_path": str(run_path), - "shard_path": str( - output_path.with_name( - f"{output_path.stem}.part{part_idx:03d}{output_path.suffix}" - ) - ), - "row_specs": [_row_to_worker_spec(row) for row in chunk], - "disease_ids": disease_ids, - "matrices": matrices, - "readout_batch_size": int(args.readout_batch_size), - "num_workers": int(args.num_workers), - } - for part_idx, (device, chunk) in enumerate(chunks) - ] - shard_paths = [] - with ProcessPoolExecutor( - max_workers=len(payloads), - mp_context=mp.get_context(args.mp_start_method), - ) as executor: - futures = [executor.submit(_worker, payload) for payload in payloads] - for future in tqdm( - as_completed(futures), - total=len(futures), - desc="Computing DeepHealth index chunks", - dynamic_ncols=True, - ): - result = future.result() - shard_paths.append(Path(result["shard_path"])) - total_readout_jobs += int(result["readout_jobs"]) - for key, value in result["timings"].items(): - timings[key] += float(value) - t0 = time.perf_counter() - _concat_csv_shards(sorted(shard_paths), output_path) - timings["write_csv_sec"] += time.perf_counter() - t0 - - print(f"Run path: {run_path}") - print(f"Eval split: {eval_split}") - print(f"Landmark rows: {len(rows)}") - print(f"Readout jobs: {total_readout_jobs}") - print(f"Union disease tokens: {disease_ids.size}") - print(f"Organ mapped tokens: {mapping_counts['organ_mapped_tokens']}") - print(f"HFRS mapped tokens: {mapping_counts['hfrs_mapped_tokens']}") - print( - "Timing seconds: " - f"forward={timings['forward_sec']:.2f}, " - f"reduce={timings['reduce_sec']:.2f}, " - f"write_csv={timings['write_csv_sec']:.2f}" - ) - print(f"Devices: {', '.join(str(d) for d, _ in chunks)}") - print(f"Output: {output_path}") - - -if __name__ == "__main__": - main() diff --git a/organ_involvement_label_mapping.csv b/organ_involvement_label_mapping.csv deleted file mode 100644 index a35f2b9..0000000 --- a/organ_involvement_label_mapping.csv +++ /dev/null @@ -1,1257 +0,0 @@ -token_id,label_code,label_name,organ_id,organ_label,organ_weight,match_source,mapping_source -3,A00,(cholera),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -4,A01,(typhoid and paratyphoid fevers),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -5,A02,(other salmonella infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -6,A03,(shigellosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -7,A04,(other bacterial intestinal infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -8,A05,(other bacterial foodborne intoxications),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -9,A06,(amoebiasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -10,A07,(other protozoal intestinal diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -11,A08,(viral and other specified intestinal infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -12,A09,(diarrhoea and gastro-enteritis of presumed infectious origin),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -13,A15,"(respiratory tuberculosis, bacteriologically and histologically confirmed)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -14,A16,"(respiratory tuberculosis, not confirmed bacteriologically or histologically)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -15,A17,(tuberculosis of nervous system),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -16,A18,(tuberculosis of other organs),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -17,A19,(miliary tuberculosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -18,A20,(plague),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -19,A22,(anthrax),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -20,A23,(brucellosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -21,A24,(glanders and melioidosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -22,A25,(rat-bite fevers),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -23,A26,(erysipeloid),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -24,A27,(leptospirosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -25,A28,"(other zoonotic bacterial diseases, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -26,A30,(leprosy [hansen's disease]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -27,A31,(infection due to other mycobacteria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -28,A32,(listeriosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -29,A33,(tetanus neonatorum),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -30,A35,(other tetanus),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -31,A36,(diphtheria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -32,A37,(whooping cough),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -33,A38,(scarlet fever),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -34,A39,(meningococcal infection),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -35,A40,(streptococcal septicaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -36,A41,(other septicaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -37,A42,(actinomycosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -38,A43,(nocardiosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -39,A44,(bartonellosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -40,A46,(erysipelas),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -41,A48,"(other bacterial diseases, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -42,A49,(bacterial infection of unspecified site),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -43,A50,(congenital syphilis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -44,A51,(early syphilis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -45,A52,(late syphilis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -46,A53,(other and unspecified syphilis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -47,A54,(gonococcal infection),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -48,A55,(chlamydial lymphogranuloma (venereum)),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -49,A56,(other sexually transmitted chlamydial diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -50,A58,(granuloma inguinale),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -51,A59,(trichomoniasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -52,A60,(anogenital herpesviral [herpes simplex] infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -53,A63,"(other predominantly sexually transmitted diseases, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -54,A64,(unspecified sexually transmitted disease),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -55,A66,(yaws),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -56,A67,(pinta [carate]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -57,A68,(relapsing fevers),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -58,A69,(other spirochaetal infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -59,A70,(chlamydia psittaci infection),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -60,A71,(trachoma),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -61,A74,(other diseases caused by chlamydiae),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -62,A75,(typhus fever),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -63,A77,(spotted fever [tick-borne rickettsioses]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -64,A78,(q fever),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -65,A79,(other rickettsioses),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -66,A80,(acute poliomyelitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -67,A81,(atypical virus infections of central nervous system),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -68,A82,(rabies),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -69,A83,(mosquito-borne viral encephalitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -70,A84,(tick-borne viral encephalitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -71,A85,"(other viral encephalitis, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -72,A86,(unspecified viral encephalitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -73,A87,(viral meningitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -74,A88,"(other viral infections of central nervous system, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -75,A89,(unspecified viral infection of central nervous system),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -76,A90,(dengue fever [classical dengue]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -77,A91,(dengue haemorrhagic fever),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -78,A92,(other mosquito-borne viral fevers),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -79,A93,"(other arthropod-borne viral fevers, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -80,A94,(unspecified arthropod-borne viral fever),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -81,A95,(yellow fever),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -82,A97,(dengue),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -83,A98,"(other viral haemorrhagic fevers, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -84,B00,(herpesviral [herpes simplex] infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -85,B01,(varicella [chickenpox]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -86,B02,(zoster [herpes zoster]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -87,B03,(smallpox),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -88,B05,(measles),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -89,B06,(rubella [german measles]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -90,B07,(viral warts),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -91,B08,"(other viral infections characterised by skin and mucous membrane lesions, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -92,B09,(unspecified viral infection characterised by skin and mucous membrane lesions),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -93,B15,(acute hepatitis a),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -94,B16,(acute hepatitis b),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -95,B17,(other acute viral hepatitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -96,B18,(chronic viral hepatitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -97,B19,(unspecified viral hepatitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -98,B20,(human immunodeficiency virus [hiv] disease resulting in infectious and parasitic diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -99,B21,(human immunodeficiency virus [hiv] disease resulting in malignant neoplasms),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -100,B22,(human immunodeficiency virus [hiv] disease resulting in other specified diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -101,B23,(human immunodeficiency virus [hiv] disease resulting in other conditions),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -102,B24,(unspecified human immunodeficiency virus [hiv] disease),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -103,B25,(cytomegaloviral disease),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -104,B26,(mumps),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -105,B27,(infectious mononucleosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -106,B30,(viral conjunctivitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -107,B33,"(other viral diseases, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -108,B34,(viral infection of unspecified site),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -109,B35,(dermatophytosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -110,B36,(other superficial mycoses),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -111,B37,(candidiasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -112,B38,(coccidioidomycosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -113,B39,(histoplasmosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -114,B40,(blastomycosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -115,B42,(sporotrichosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -116,B43,(chromomycosis and phaeomycotic abscess),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -117,B44,(aspergillosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -118,B45,(cryptococcosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -119,B46,(zygomycosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -120,B47,(mycetoma),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -121,B48,"(other mycoses, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -122,B49,(unspecified mycosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -123,B50,(plasmodium falciparum malaria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -124,B51,(plasmodium vivax malaria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -125,B52,(plasmodium malariae malaria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -126,B53,(other parasitologically confirmed malaria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -127,B54,(unspecified malaria),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -128,B55,(leishmaniasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -129,B57,(chagas' disease),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -130,B58,(toxoplasmosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -131,B59,(pneumocystosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -132,B60,"(other protozoal diseases, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -133,B65,(schistosomiasis [bilharziasis]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -134,B66,(other fluke infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -135,B67,(echinococcosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -136,B68,(taeniasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -137,B69,(cysticercosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -138,B71,(other cestode infections),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -139,B73,(onchocerciasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -140,B74,(filariasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -141,B75,(trichinellosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -142,B76,(hookworm diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -143,B77,(ascariasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -144,B78,(strongyloidiasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -145,B79,(trichuriasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -146,B80,(enterobiasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -147,B81,"(other intestinal helminthiases, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -148,B82,(unspecified intestinal parasitism),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -149,B83,(other helminthiases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -150,B85,(pediculosis and phthiriasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -151,B86,(scabies),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -152,B87,(myiasis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -153,B88,(other infestations),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -154,B89,(unspecified parasitic disease),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -155,B90,(sequelae of tuberculosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -156,B91,(sequelae of poliomyelitis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -157,B94,(sequelae of other and unspecified infectious and parasitic diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -158,B95,(streptococcus and staphylococcus as the cause of diseases classified to other chapters),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -159,B96,(other bacterial agents as the cause of diseases classified to other chapters),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -160,B97,(viral agents as the cause of diseases classified to other chapters),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -161,B98,(other specified infectious agents as the cause of diseases classified to other chapters),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -162,B99,(other and unspecified infectious diseases),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -163,D50,(iron deficiency anaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -164,D51,(vitamin b12 deficiency anaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -165,D52,(folate deficiency anaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -166,D53,(other nutritional anaemias),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -167,D55,(anaemia due to enzyme disorders),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -168,D56,(thalassaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -169,D57,(sickle-cell disorders),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -170,D58,(other hereditary haemolytic anaemias),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -171,D59,(acquired haemolytic anaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -172,D60,(acquired pure red cell aplasia [erythroblastopenia]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -173,D61,(other aplastic anaemias),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -174,D62,(acute posthaemorrhagic anaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -175,D63,(anaemia in chronic diseases classified elsewhere),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -176,D64,(other anaemias),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -177,D65,(disseminated intravascular coagulation [defibrination syndrome]),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -178,D66,(hereditary factor viii deficiency),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -179,D67,(hereditary factor ix deficiency),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -180,D68,(other coagulation defects),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -181,D69,(purpura and other haemorrhagic conditions),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -182,D70,(agranulocytosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -183,D71,(functional disorders of polymorphonuclear neutrophils),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -184,D72,(other disorders of white blood cells),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -185,D73,(diseases of spleen),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -186,D74,(methaemoglobinaemia),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -187,D75,(other diseases of blood and blood-forming organs),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -188,D76,(certain diseases involving lymphoreticular tissue and reticulohistiocytic system),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -189,D77,(other disorders of blood and blood-forming organs in diseases classified elsewhere),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -190,D80,(immunodeficiency with predominantly antibody defects),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -191,D81,(combined immunodeficiencies),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -192,D82,(immunodeficiency associated with other major defects),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -193,D83,(common variable immunodeficiency),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -194,D84,(other immunodeficiencies),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -195,D86,(sarcoidosis),immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -196,D89,"(other disorders involving the immune mechanism, not elsewhere classified)",immune,immune,1.0,a00_b99_d50_d89,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -197,E01,(iodine-deficiency-related thyroid disorders and allied conditions),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -198,E02,(subclinical iodine-deficiency hypothyroidism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -199,E03,(other hypothyroidism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -200,E04,(other non-toxic goitre),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -201,E05,(thyrotoxicosis [hyperthyroidism]),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -202,E06,(thyroiditis),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -203,E07,(other disorders of thyroid),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -204,E10,(insulin-dependent diabetes mellitus),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -205,E11,(non-insulin-dependent diabetes mellitus),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -206,E12,(malnutrition-related diabetes mellitus),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -207,E13,(other specified diabetes mellitus),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -208,E14,(unspecified diabetes mellitus),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -209,E15,(nondiabetic hypoglycaemic coma),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -210,E16,(other disorders of pancreatic internal secretion),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -211,E20,(hypoparathyroidism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -212,E21,(hyperparathyroidism and other disorders of parathyroid gland),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -213,E22,(hyperfunction of pituitary gland),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -214,E23,(hypofunction and other disorders of pituitary gland),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -215,E24,(cushing's syndrome),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -216,E25,(adrenogenital disorders),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -217,E26,(hyperaldosteronism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -218,E27,(other disorders of adrenal gland),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -219,E28,(ovarian dysfunction),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -220,E29,(testicular dysfunction),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -221,E30,"(disorders of puberty, not elsewhere classified)",adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -222,E31,(polyglandular dysfunction),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -223,E32,(diseases of thymus),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -224,E34,(other endocrine disorders),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -225,E35,(disorders of endocrine glands in diseases classified elsewhere),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -226,E41,(nutritional marasmus),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -227,E43,(unspecified severe protein-energy malnutrition),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -228,E44,(protein-energy malnutrition of moderate and mild degree),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -229,E45,(retarded development following protein-energy malnutrition),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -230,E46,(unspecified protein-energy malnutrition),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -231,E50,(vitamin a deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -232,E51,(thiamine deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -233,E52,(niacin deficiency [pellagra]),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -234,E53,(deficiency of other b group vitamins),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -235,E54,(ascorbic acid deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -236,E55,(vitamin d deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -237,E56,(other vitamin deficiencies),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -238,E58,(dietary calcium deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -239,E59,(dietary selenium deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -240,E60,(dietary zinc deficiency),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -241,E61,(deficiency of other nutrient elements),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -242,E63,(other nutritional deficiencies),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -243,E64,(sequelae of malnutrition and other nutritional deficiencies),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -244,E65,(localised adiposity),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -245,E66,(obesity),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -246,E67,(other hyperalimentation),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -247,E68,(sequelae of hyperalimentation),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -248,E70,(disorders of aromatic amino-acid metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -249,E71,(disorders of branched-chain amino-acid metabolism and fatty-acid metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -250,E72,(other disorders of amino-acid metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -251,E73,(lactose intolerance),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -252,E74,(other disorders of carbohydrate metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -253,E75,(disorders of sphingolipid metabolism and other lipid storage disorders),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -254,E76,(disorders of glycosaminoglycan metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -255,E77,(disorders of glycoprotein metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -256,E78,(disorders of lipoprotein metabolism and other lipidaemias),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -257,E79,(disorders of purine and pyrimidine metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -258,E80,(disorders of porphyrin and bilirubin metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -259,E83,(disorders of mineral metabolism),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -260,E84,(cystic fibrosis),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -261,E85,(amyloidosis),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -262,E86,(volume depletion),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -263,E87,"(other disorders of fluid, electrolyte and acid-base balance)",adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -264,E88,(other metabolic disorders),adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -265,E89,"(postprocedural endocrine and metabolic disorders, not elsewhere classified)",adipose_metabolic,adipose_metabolic,1.0,e00_e09_e17_e90,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -266,F00,(dementia in alzheimer's disease),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -267,F01,(vascular dementia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -268,F02,(dementia in other diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -269,F03,(unspecified dementia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -270,F04,"(organic amnesic syndrome, not induced by alcohol and other psychoactive substances)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -271,F05,"(delirium, not induced by alcohol and other psychoactive substances)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -272,F06,(other mental disorders due to brain damage and dysfunction and to physical disease),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -273,F07,"(personality and behavioural disorders due to brain disease, damage and dysfunction)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -274,F09,(unspecified organic or symptomatic mental disorder),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -275,F10,(mental and behavioural disorders due to use of alcohol),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -276,F11,(mental and behavioural disorders due to use of opioids),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -277,F12,(mental and behavioural disorders due to use of cannabinoids),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -278,F13,(mental and behavioural disorders due to use of sedatives or hypnotics),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -279,F14,(mental and behavioural disorders due to use of cocaine),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -280,F15,"(mental and behavioural disorders due to use of other stimulants, including caffeine)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -281,F16,(mental and behavioural disorders due to use of hallucinogens),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -282,F17,(mental and behavioural disorders due to use of tobacco),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -283,F18,(mental and behavioural disorders due to use of volatile solvents),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -284,F19,(mental and behavioural disorders due to multiple drug use and use of other psychoactive substances),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -285,F20,(schizophrenia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -286,F21,(schizotypal disorder),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -287,F22,(persistent delusional disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -288,F23,(acute and transient psychotic disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -289,F24,(induced delusional disorder),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -290,F25,(schizoaffective disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -291,F28,(other nonorganic psychotic disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -292,F29,(unspecified nonorganic psychosis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -293,F30,(manic episode),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -294,F31,(bipolar affective disorder),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -295,F32,(depressive episode),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -296,F33,(recurrent depressive disorder),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -297,F34,(persistent mood [affective] disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -298,F38,(other mood [affective] disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -299,F39,(unspecified mood [affective] disorder),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -300,F40,(phobic anxiety disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -301,F41,(other anxiety disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -302,F42,(obsessive-compulsive disorder),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -303,F43,"(reaction to severe stress, and adjustment disorders)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -304,F44,(dissociative [conversion] disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -305,F45,(somatoform disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -306,F48,(other neurotic disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -307,F50,(eating disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -308,F51,(nonorganic sleep disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -309,F52,"(sexual dysfunction, not caused by organic disorder or disease)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -310,F53,"(mental and behavioural disorders associated with the puerperium, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -311,F54,(psychological and behavioural factors associated with disorders or diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -312,F55,(abuse of non-dependence-producing substances),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -313,F59,(unspecified behavioural syndromes associated with physiological disturbances and physical factors),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -314,F60,(specific personality disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -315,F61,(mixed and other personality disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -316,F62,"(enduring personality changes, not attributable to brain damage and disease)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -317,F63,(habit and impulse disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -318,F64,(gender identity disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -319,F65,(disorders of sexual preference),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -320,F66,(psychological and behavioural disorders associated with sexual development and orientation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -321,F68,(other disorders of adult personality and behaviour),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -322,F69,(unspecified disorder of adult personality and behaviour),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -323,F70,(mild mental retardation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -324,F71,(moderate mental retardation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -325,F72,(severe mental retardation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -326,F78,(other mental retardation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -327,F79,(unspecified mental retardation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -328,F80,(specific developmental disorders of speech and language),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -329,F81,(specific developmental disorders of scholastic skills),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -330,F82,(specific developmental disorder of motor function),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -331,F83,(mixed specific developmental disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -332,F84,(pervasive developmental disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -333,F88,(other disorders of psychological development),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -334,F89,(unspecified disorder of psychological development),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -335,F90,(hyperkinetic disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -336,F91,(conduct disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -337,F92,(mixed disorders of conduct and emotions),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -338,F93,(emotional disorders with onset specific to childhood),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -339,F94,(disorders of social functioning with onset specific to childhood and adolescence),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -340,F95,(tic disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -341,F98,(other behavioural and emotional disorders with onset usually occurring in childhood and adolescence),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -342,F99,"(mental disorder, not otherwise specified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -343,G00,"(bacterial meningitis, not elsewhere classified)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -344,G01,(meningitis in bacterial diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -345,G02,(meningitis in other infectious and parasitic diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -346,G03,(meningitis due to other and unspecified causes),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -347,G04,"(encephalitis, myelitis and encephalomyelitis)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -348,G05,"(encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -349,G06,(intracranial and intraspinal abscess and granuloma),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -350,G07,(intracranial and intraspinal abscess and granuloma in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -351,G08,(intracranial and intraspinal phlebitis and thrombophlebitis),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -352,G09,(sequelae of inflammatory diseases of central nervous system),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -353,G10,(huntington's disease),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -354,G11,(hereditary ataxia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -355,G12,(spinal muscular atrophy and related syndromes),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -356,G13,(systemic atrophies primarily affecting central nervous system in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -357,G14,(postpolio syndrome),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -358,G20,(parkinson's disease),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -359,G21,(secondary parkinsonism),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -360,G22,(parkinsonism in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -361,G23,(other degenerative diseases of basal ganglia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -362,G24,(dystonia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -363,G25,(other extrapyramidal and movement disorders),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -364,G30,(alzheimer's disease),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -365,G31,"(other degenerative diseases of nervous system, not elsewhere classified)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -366,G32,(other degenerative disorders of nervous system in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -367,G35,(multiple sclerosis),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -368,G36,(other acute disseminated demyelination),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -369,G37,(other demyelinating diseases of central nervous system),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -370,G40,(epilepsy),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -371,G41,(status epilepticus),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -372,G43,(migraine),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -373,G44,(other headache syndromes),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -374,G45,(transient cerebral ischaemic attacks and related syndromes),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -375,G46,(vascular syndromes of brain in cerebrovascular diseases),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -376,G47,(sleep disorders),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -377,G50,(disorders of trigeminal nerve),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -378,G51,(facial nerve disorders),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -379,G52,(disorders of other cranial nerves),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -380,G53,(cranial nerve disorders in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -381,G54,(nerve root and plexus disorders),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -382,G55,(nerve root and plexus compressions in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -383,G56,(mononeuropathies of upper limb),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -384,G57,(mononeuropathies of lower limb),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -385,G58,(other mononeuropathies),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -386,G59,(mononeuropathy in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -387,G60,(hereditary and idiopathic neuropathy),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -388,G61,(inflammatory polyneuropathy),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -389,G62,(other polyneuropathies),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -390,G63,(polyneuropathy in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -391,G64,(other disorders of peripheral nervous system),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -392,G70,(myasthenia gravis and other myoneural disorders),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -393,G71,(primary disorders of muscles),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -394,G72,(other myopathies),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -395,G73,(disorders of myoneural junction and muscle in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -396,G80,(infantile cerebral palsy),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -397,G81,(hemiplegia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -398,G82,(paraplegia and tetraplegia),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -399,G83,(other paralytic syndromes),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -400,G90,(disorders of autonomic nervous system),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -401,G91,(hydrocephalus),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -402,G92,(toxic encephalopathy),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -403,G93,(other disorders of brain),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -404,G94,(other disorders of brain in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -405,G95,(other diseases of spinal cord),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -406,G96,(other disorders of central nervous system),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -407,G97,"(postprocedural disorders of nervous system, not elsewhere classified)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -408,G98,"(other disorders of nervous system, not elsewhere classified)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -409,G99,(other disorders of nervous system in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -410,H00,(hordeolum and chalazion),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -411,H01,(other inflammation of eyelid),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -412,H02,(other disorders of eyelid),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -413,H03,(disorders of eyelid in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -414,H04,(disorders of lachrymal system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -415,H05,(disorders of orbit),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -416,H06,(disorders of lachrymal system and orbit in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -417,H10,(conjunctivitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -418,H11,(other disorders of conjunctiva),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -419,H13,(disorders of conjunctiva in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -420,H15,(disorders of sclera),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -421,H16,(keratitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -422,H17,(corneal scars and opacities),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -423,H18,(other disorders of cornea),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -424,H19,(disorders of sclera and cornea in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -425,H20,(iridocyclitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -426,H21,(other disorders of iris and ciliary body),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -427,H22,(disorders of iris and ciliary body in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -428,H25,(senile cataract),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -429,H26,(other cataract),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -430,H27,(other disorders of lens),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -431,H28,(cataract and other disorders of lens in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -432,H30,(chorioretinal inflammation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -433,H31,(other disorders of choroid),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -434,H32,(chorioretinal disorders in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -435,H33,(retinal detachments and breaks),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -436,H34,(retinal vascular occlusions),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -437,H35,(other retinal disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -438,H36,(retinal disorders in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -439,H40,(glaucoma),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -440,H42,(glaucoma in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -441,H43,(disorders of vitreous body),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -442,H44,(disorders of globe),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -443,H45,(disorders of vitreous body and globe in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -444,H46,(optic neuritis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -445,H47,(other disorders of optic [2nd] nerve and visual pathways),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -446,H48,(disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -447,H49,(paralytic strabismus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -448,H50,(other strabismus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -449,H51,(other disorders of binocular movement),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -450,H52,(disorders of refraction and accommodation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -451,H53,(visual disturbances),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -452,H54,(blindness and low vision),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -453,H55,(nystagmus and other irregular eye movements),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -454,H57,(other disorders of eye and adnexa),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -455,H58,(other disorders of eye and adnexa in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -456,H59,"(postprocedural disorders of eye and adnexa, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -457,H60,(otitis externa),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -458,H61,(other disorders of external ear),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -459,H62,(disorders of external ear in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -460,H65,(nonsuppurative otitis media),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -461,H66,(suppurative and unspecified otitis media),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -462,H67,(otitis media in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -463,H68,(eustachian salpingitis and obstruction),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -464,H69,(other disorders of eustachian tube),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -465,H70,(mastoiditis and related conditions),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -466,H71,(cholesteatoma of middle ear),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -467,H72,(perforation of tympanic membrane),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -468,H73,(other disorders of tympanic membrane),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -469,H74,(other disorders of middle ear and mastoid),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -470,H75,(other disorders of middle ear and mastoid in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -471,H80,(otosclerosis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -472,H81,(disorders of vestibular function),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -473,H82,(vertiginous syndromes in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -474,H83,(other diseases of inner ear),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -475,H90,(conductive and sensorineural hearing loss),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -476,H91,(other hearing loss),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -477,H92,(otalgia and effusion of ear),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -478,H93,"(other disorders of ear, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -479,H94,(other disorders of ear in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -480,H95,"(postprocedural disorders of ear and mastoid process, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -481,I00,(rheumatic fever without mention of heart involvement),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -482,I01,(rheumatic fever with heart involvement),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -483,I02,(rheumatic chorea),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -484,I05,(rheumatic mitral valve diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -485,I06,(rheumatic aortic valve diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -486,I07,(rheumatic tricuspid valve diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -487,I08,(multiple valve diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -488,I09,(other rheumatic heart diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -489,I10,(essential (primary) hypertension),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -490,I11,(hypertensive heart disease),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -491,I12,(hypertensive renal disease),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -492,I13,(hypertensive heart and renal disease),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -493,I15,(secondary hypertension),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -494,I20,(angina pectoris),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -495,I21,(acute myocardial infarction),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -496,I22,(subsequent myocardial infarction),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -497,I23,(certain current complications following acute myocardial infarction),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -498,I24,(other acute ischaemic heart diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -499,I25,(chronic ischaemic heart disease),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -500,I26,(pulmonary embolism),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -501,I27,(other pulmonary heart diseases),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -502,I28,(other diseases of pulmonary vessels),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -503,I30,(acute pericarditis),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -504,I31,(other diseases of pericardium),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -505,I32,(pericarditis in diseases classified elsewhere),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -506,I33,(acute and subacute endocarditis),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -507,I34,(nonrheumatic mitral valve disorders),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -508,I35,(nonrheumatic aortic valve disorders),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -509,I36,(nonrheumatic tricuspid valve disorders),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -510,I37,(pulmonary valve disorders),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -511,I38,"(endocarditis, valve unspecified)",heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -512,I39,(endocarditis and heart valve disorders in diseases classified elsewhere),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -513,I40,(acute myocarditis),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -514,I41,(myocarditis in diseases classified elsewhere),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -515,I42,(cardiomyopathy),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -516,I43,(cardiomyopathy in diseases classified elsewhere),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -517,I44,(atrioventricular and left bundle-branch block),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -518,I45,(other conduction disorders),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -519,I46,(cardiac arrest),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -520,I47,(paroxysmal tachycardia),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -521,I48,(atrial fibrillation and flutter),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -522,I49,(other cardiac arrhythmias),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -523,I50,(heart failure),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -524,I51,(complications and ill-defined descriptions of heart disease),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -525,I52,(other heart disorders in diseases classified elsewhere),heart,heart,1.0,i00_i09_i20_i52,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -526,I60,(subarachnoid haemorrhage),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -527,I61,(intracerebral haemorrhage),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -528,I62,(other nontraumatic intracranial haemorrhage),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -529,I63,(cerebral infarction),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -530,I64,"(stroke, not specified as haemorrhage or infarction)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -531,I65,"(occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -532,I66,"(occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction)",brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -533,I67,(other cerebrovascular diseases),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -534,I68,(cerebrovascular disorders in diseases classified elsewhere),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -535,I69,(sequelae of cerebrovascular disease),brain_neurologic,brain_neurologic,1.0,f00_f09_g00_g99_i60_i69,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -536,I70,(atherosclerosis),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -537,I71,(aortic aneurysm and dissection),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -538,I72,(other aneurysm),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -539,I73,(other peripheral vascular diseases),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -540,I74,(arterial embolism and thrombosis),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -541,I77,(other disorders of arteries and arterioles),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -542,I78,(diseases of capillaries),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -543,I79,"(disorders of arteries, arterioles and capillaries in diseases classified elsewhere)",artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -544,I80,(phlebitis and thrombophlebitis),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -545,I81,(portal vein thrombosis),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -546,I82,(other venous embolism and thrombosis),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -547,I83,(varicose veins of lower extremities),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -548,I84,(haemorrhoids),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -549,I85,(oesophageal varices),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -550,I86,(varicose veins of other sites),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -551,I87,(other disorders of veins),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -552,I88,(nonspecific lymphadenitis),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -553,I89,(other non-infective disorders of lymphatic vessels and lymph nodes),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -554,I95,(hypotension),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -555,I97,"(postprocedural disorders of circulatory system, not elsewhere classified)",artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -556,I98,(other disorders of circulatory system in diseases classified elsewhere),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -557,I99,(other and unspecified disorders of circulatory system),artery_vascular,artery_vascular,1.0,i10_i15_i70_i89_i95_i99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -558,J00,(acute nasopharyngitis [common cold]),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -559,J01,(acute sinusitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -560,J02,(acute pharyngitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -561,J03,(acute tonsillitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -562,J04,(acute laryngitis and tracheitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -563,J05,(acute obstructive laryngitis [croup] and epiglottitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -564,J06,(acute upper respiratory infections of multiple and unspecified sites),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -565,J09,(influenza due to certain identified influenza virus),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -566,J10,(influenza due to identified influenza virus),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -567,J11,"(influenza, virus not identified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -568,J12,"(viral pneumonia, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -569,J13,(pneumonia due to streptococcus pneumoniae),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -570,J14,(pneumonia due to haemophilus influenzae),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -571,J15,"(bacterial pneumonia, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -572,J16,"(pneumonia due to other infectious organisms, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -573,J17,(pneumonia in diseases classified elsewhere),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -574,J18,"(pneumonia, organism unspecified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -575,J20,(acute bronchitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -576,J21,(acute bronchiolitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -577,J22,(unspecified acute lower respiratory infection),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -578,J30,(vasomotor and allergic rhinitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -579,J31,"(chronic rhinitis, nasopharyngitis and pharyngitis)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -580,J32,(chronic sinusitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -581,J33,(nasal polyp),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -582,J34,(other disorders of nose and nasal sinuses),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -583,J35,(chronic diseases of tonsils and adenoids),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -584,J36,(peritonsillar abscess),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -585,J37,(chronic laryngitis and laryngotracheitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -586,J38,"(diseases of vocal cords and larynx, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -587,J39,(other diseases of upper respiratory tract),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -588,J40,"(bronchitis, not specified as acute or chronic)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -589,J41,(simple and mucopurulent chronic bronchitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -590,J42,(unspecified chronic bronchitis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -591,J43,(emphysema),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -592,J44,(other chronic obstructive pulmonary disease),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -593,J45,(asthma),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -594,J46,(status asthmaticus),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -595,J47,(bronchiectasis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -596,J60,(coalworker's pneumoconiosis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -597,J61,(pneumoconiosis due to asbestos and other mineral fibres),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -598,J62,(pneumoconiosis due to dust containing silica),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -599,J63,(pneumoconiosis due to other inorganic dusts),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -600,J64,(unspecified pneumoconiosis),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -601,J66,(airway disease due to specific organic dust),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -602,J67,(hypersensitivity pneumonitis due to organic dust),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -603,J68,"(respiratory conditions due to inhalation of chemicals, gases, fumes and vapours)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -604,J69,(pneumonitis due to solids and liquids),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -605,J70,(respiratory conditions due to other external agents),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -606,J80,(adult respiratory distress syndrome),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -607,J81,(pulmonary oedema),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -608,J82,"(pulmonary eosinophilia, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -609,J84,(other interstitial pulmonary diseases),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -610,J85,(abscess of lung and mediastinum),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -611,J86,(pyothorax),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -612,J90,"(pleural effusion, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -613,J91,(pleural effusion in conditions classified elsewhere),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -614,J92,(pleural plaque),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -615,J93,(pneumothorax),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -616,J94,(other pleural conditions),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -617,J95,"(postprocedural respiratory disorders, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -618,J96,"(respiratory failure, not elsewhere classified)",lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -619,J98,(other respiratory disorders),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -620,J99,(respiratory disorders in diseases classified elsewhere),lung,lung,1.0,j00_j99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -621,K00,(disorders of tooth development and eruption),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -622,K01,(embedded and impacted teeth),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -623,K02,(dental caries),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -624,K03,(other diseases of hard tissues of teeth),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -625,K04,(diseases of pulp and periapical tissues),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -626,K05,(gingivitis and periodontal diseases),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -627,K06,(other disorders of gingiva and edentulous alveolar ridge),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -628,K07,(dentofacial anomalies [including malocclusion]),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -629,K08,(other disorders of teeth and supporting structures),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -630,K09,"(cysts of oral region, not elsewhere classified)",intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -631,K10,(other diseases of jaws),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -632,K11,(diseases of salivary glands),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -633,K12,(stomatitis and related lesions),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -634,K13,(other diseases of lip and oral mucosa),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -635,K14,(diseases of tongue),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -636,K20,(oesophagitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -637,K21,(gastro-oesophageal reflux disease),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -638,K22,(other diseases of oesophagus),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -639,K23,(disorders of oesophagus in diseases classified elsewhere),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -640,K25,(gastric ulcer),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -641,K26,(duodenal ulcer),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -642,K27,"(peptic ulcer, site unspecified)",intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -643,K28,(gastrojejunal ulcer),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -644,K29,(gastritis and duodenitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -645,K30,(dyspepsia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -646,K31,(other diseases of stomach and duodenum),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -647,K35,(acute appendicitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -648,K36,(other appendicitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -649,K37,(unspecified appendicitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -650,K38,(other diseases of appendix),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -651,K40,(inguinal hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -652,K41,(femoral hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -653,K42,(umbilical hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -654,K43,(ventral hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -655,K44,(diaphragmatic hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -656,K45,(other abdominal hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -657,K46,(unspecified abdominal hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -658,K50,(crohn's disease [regional enteritis]),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -659,K51,(ulcerative colitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -660,K52,(other non-infective gastro-enteritis and colitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -661,K55,(vascular disorders of intestine),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -662,K56,(paralytic ileus and intestinal obstruction without hernia),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -663,K57,(diverticular disease of intestine),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -664,K58,(irritable bowel syndrome),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -665,K59,(other functional intestinal disorders),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -666,K60,(fissure and fistula of anal and rectal regions),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -667,K61,(abscess of anal and rectal regions),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -668,K62,(other diseases of anus and rectum),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -669,K63,(other diseases of intestine),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -670,K64,(haemorrhoids and perianal venous thrombosis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -671,K65,(peritonitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -672,K66,(other disorders of peritoneum),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -673,K67,(disorders of peritoneum in infectious diseases classified elsewhere),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -674,K70,(alcoholic liver disease),liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -675,K71,(toxic liver disease),liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -676,K72,"(hepatic failure, not elsewhere classified)",liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -677,K73,"(chronic hepatitis, not elsewhere classified)",liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -678,K74,(fibrosis and cirrhosis of liver),liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -679,K75,(other inflammatory liver diseases),liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -680,K76,(other diseases of liver),liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -681,K77,(liver disorders in diseases classified elsewhere),liver,liver,1.0,k70_k77,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -682,K80,(cholelithiasis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -683,K81,(cholecystitis),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -684,K82,(other diseases of gallbladder),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -685,K83,(other diseases of biliary tract),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -686,K85,(acute pancreatitis),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -687,K86,(other diseases of pancreas),pancreas_endocrine,pancreas_endocrine,1.0,k85_k86_e10_e16,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -688,K87,"(disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere)",intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -689,K90,(intestinal malabsorption),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -690,K91,"(postprocedural disorders of digestive system, not elsewhere classified)",intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -691,K92,(other diseases of digestive system),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -692,K93,(disorders of other digestive organs in diseases classified elsewhere),intestine_digestive,intestine_digestive,1.0,k00_k69_k78_k84_k87_k93,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -693,L00,(staphylococcal scalded skin syndrome),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -694,L01,(impetigo),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -695,L02,"(cutaneous abscess, furuncle and carbuncle)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -696,L03,(cellulitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -697,L04,(acute lymphadenitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -698,L05,(pilonidal cyst),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -699,L08,(other local infections of skin and subcutaneous tissue),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -700,L10,(pemphigus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -701,L11,(other acantholytic disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -702,L12,(pemphigoid),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -703,L13,(other bullous disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -704,L14,(bullous disorders in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -705,L20,(atopic dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -706,L21,(seborrhoeic dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -707,L22,(diaper [napkin] dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -708,L23,(allergic contact dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -709,L24,(irritant contact dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -710,L25,(unspecified contact dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -711,L26,(exfoliative dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -712,L27,(dermatitis due to substances taken internally),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -713,L28,(lichen simplex chronicus and prurigo),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -714,L29,(pruritus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -715,L30,(other dermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -716,L40,(psoriasis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -717,L41,(parapsoriasis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -718,L42,(pityriasis rosea),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -719,L43,(lichen planus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -720,L44,(other papulosquamous disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -721,L50,(urticaria),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -722,L51,(erythema multiforme),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -723,L52,(erythema nodosum),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -724,L53,(other erythematous conditions),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -725,L54,(erythema in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -726,L55,(sunburn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -727,L56,(other acute skin changes due to ultraviolet radiation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -728,L57,(skin changes due to chronic exposure to nonionising radiation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -729,L58,(radiodermatitis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -730,L59,(other disorders of skin and subcutaneous tissue related to radiation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -731,L60,(nail disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -732,L62,(nail disorders in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -733,L63,(alopecia areata),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -734,L64,(androgenic alopecia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -735,L65,(other nonscarring hair loss),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -736,L66,(cicatricial alopecia [scarring hair loss]),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -737,L67,(hair colour and hair shaft abnormalities),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -738,L68,(hypertrichosis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -739,L70,(acne),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -740,L71,(rosacea),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -741,L72,(follicular cysts of skin and subcutaneous tissue),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -742,L73,(other follicular disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -743,L74,(eccrine sweat disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -744,L75,(apocrine sweat disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -745,L80,(vitiligo),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -746,L81,(other disorders of pigmentation),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -747,L82,(seborrhoeic keratosis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -748,L83,(acanthosis nigricans),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -749,L84,(corns and callosities),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -750,L85,(other epidermal thickening),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -751,L86,(keratoderma in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -752,L87,(transepidermal elimination disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -753,L88,(pyoderma gangrenosum),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -754,L89,(decubitus ulcer),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -755,L90,(atrophic disorders of skin),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -756,L91,(hypertrophic disorders of skin),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -757,L92,(granulomatous disorders of skin and subcutaneous tissue),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -758,L93,(lupus erythematosus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -759,L94,(other localised connective tissue disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -760,L95,"(vasculitis limited to skin, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -761,L97,"(ulcer of lower limb, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -762,L98,"(other disorders of skin and subcutaneous tissue, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -763,L99,(other disorders of skin and subcutaneous tissue in diseases classified elsewhere),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -764,M00,(pyogenic arthritis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -765,M01,(direct infections of joint in infectious and parasitic diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -766,M02,(reactive arthropathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -767,M03,(postinfective and reactive arthropathies in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -768,M05,(seropositive rheumatoid arthritis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -769,M06,(other rheumatoid arthritis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -770,M07,(psoriatic and enteropathic arthropathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -771,M08,(juvenile arthritis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -772,M09,(juvenile arthritis in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -773,M10,(gout),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -774,M11,(other crystal arthropathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -775,M12,(other specific arthropathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -776,M13,(other arthritis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -777,M14,(arthropathies in other diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -778,M15,(polyarthrosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -779,M16,(coxarthrosis [arthrosis of hip]),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -780,M17,(gonarthrosis [arthrosis of knee]),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -781,M18,(arthrosis of first carpometacarpal joint),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -782,M19,(other arthrosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -783,M20,(acquired deformities of fingers and toes),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -784,M21,(other acquired deformities of limbs),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -785,M22,(disorders of patella),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -786,M23,(internal derangement of knee),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -787,M24,(other specific joint derangements),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -788,M25,"(other joint disorders, not elsewhere classified)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -789,M30,(polyarteritis nodosa and related conditions),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -790,M31,(other necrotising vasculopathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -791,M32,(systemic lupus erythematosus),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -792,M33,(dermatopolymyositis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -793,M34,(systemic sclerosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -794,M35,(other systemic involvement of connective tissue),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -795,M36,(systemic disorders of connective tissue in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -796,M40,(kyphosis and lordosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -797,M41,(scoliosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -798,M42,(spinal osteochondrosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -799,M43,(other deforming dorsopathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -800,M45,(ankylosing spondylitis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -801,M46,(other inflammatory spondylopathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -802,M47,(spondylosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -803,M48,(other spondylopathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -804,M49,(spondylopathies in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -805,M50,(cervical disk disorders),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -806,M51,(other intervertebral disk disorders),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -807,M53,"(other dorsopathies, not elsewhere classified)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -808,M54,(dorsalgia),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -809,M60,(myositis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -810,M61,(calcification and ossification of muscle),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -811,M62,(other disorders of muscle),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -812,M63,(disorders of muscle in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -813,M65,(synovitis and tenosynovitis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -814,M66,(spontaneous rupture of synovium and tendon),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -815,M67,(other disorders of synovium and tendon),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -816,M68,(disorders of synovium and tendon in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -817,M70,"(soft tissue disorders related to use, overuse and pressure)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -818,M71,(other bursopathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -819,M72,(fibroblastic disorders),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -820,M73,(soft tissue disorders in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -821,M75,(shoulder lesions),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -822,M76,"(enthesopathies of lower limb, excluding foot)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -823,M77,(other enthesopathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -824,M79,"(other soft tissue disorders, not elsewhere classified)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -825,M80,(osteoporosis with pathological fracture),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -826,M81,(osteoporosis without pathological fracture),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -827,M82,(osteoporosis in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -828,M83,(adult osteomalacia),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -829,M84,(disorders of continuity of bone),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -830,M85,(other disorders of bone density and structure),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -831,M86,(osteomyelitis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -832,M87,(osteonecrosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -833,M88,(paget's disease of bone [osteitis deformans]),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -834,M89,(other disorders of bone),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -835,M90,(osteopathies in diseases classified elsewhere),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -836,M91,(juvenile osteochondrosis of hip and pelvis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -837,M92,(other juvenile osteochondrosis),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -838,M93,(other osteochondropathies),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -839,M94,(other disorders of cartilage),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -840,M95,(other acquired deformities of musculoskeletal system and connective tissue),muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -841,M96,"(postprocedural musculoskeletal disorders, not elsewhere classified)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -842,M99,"(biomechanical lesions, not elsewhere classified)",muscle_musculoskeletal,muscle_musculoskeletal,1.0,m00_m99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -843,N00,(acute nephritic syndrome),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -844,N01,(rapidly progressive nephritic syndrome),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -845,N02,(recurrent and persistent haematuria),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -846,N03,(chronic nephritic syndrome),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -847,N04,(nephrotic syndrome),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -848,N05,(unspecified nephritic syndrome),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -849,N06,(isolated proteinuria with specified morphological lesion),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -850,N07,"(hereditary nephropathy, not elsewhere classified)",kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -851,N08,(glomerular disorders in diseases classified elsewhere),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -852,N10,(acute tubulo-interstitial nephritis),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -853,N11,(chronic tubulo-interstitial nephritis),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -854,N12,"(tubulo-interstitial nephritis, not specified as acute or chronic)",kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -855,N13,(obstructive and reflux uropathy),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -856,N14,(drug- and heavy-metal-induced tubulo-interstitial and tubular conditions),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -857,N15,(other renal tubulo-interstitial diseases),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -858,N16,(renal tubulo-interstitial disorders in diseases classified elsewhere),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -859,N17,(acute renal failure),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -860,N18,(chronic renal failure),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -861,N19,(unspecified renal failure),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -862,N20,(calculus of kidney and ureter),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -863,N21,(calculus of lower urinary tract),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -864,N22,(calculus of urinary tract in diseases classified elsewhere),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -865,N23,(unspecified renal colic),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -866,N25,(disorders resulting from impaired renal tubular function),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -867,N26,(unspecified contracted kidney),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -868,N27,(small kidney of unknown cause),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -869,N28,"(other disorders of kidney and ureter, not elsewhere classified)",kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -870,N29,(other disorders of kidney and ureter in diseases classified elsewhere),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -871,N30,(cystitis),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -872,N31,"(neuromuscular dysfunction of bladder, not elsewhere classified)",kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -873,N32,(other disorders of bladder),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -874,N33,(bladder disorders in diseases classified elsewhere),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -875,N34,(urethritis and urethral syndrome),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -876,N35,(urethral stricture),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -877,N36,(other disorders of urethra),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -878,N37,(urethral disorders in diseases classified elsewhere),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -879,N39,(other disorders of urinary system),kidney,kidney,1.0,n00_n39,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -880,N40,(hyperplasia of prostate),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -881,N41,(inflammatory diseases of prostate),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -882,N42,(other disorders of prostate),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -883,N43,(hydrocele and spermatocele),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -884,N44,(torsion of testis),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -885,N45,(orchitis and epididymitis),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -886,N46,(male infertility),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -887,N47,"(redundant prepuce, phimosis and paraphimosis)",male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -888,N48,(other disorders of penis),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -889,N49,"(inflammatory disorders of male genital organs, not elsewhere classified)",male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -890,N50,(other disorders of male genital organs),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -891,N51,(disorders of male genital organs in diseases classified elsewhere),male_reproductive,male_reproductive,1.0,n40_n53,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -892,N60,(benign mammary dysplasia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -893,N61,(inflammatory disorders of breast),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -894,N62,(hypertrophy of breast),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -895,N63,(unspecified lump in breast),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -896,N64,(other disorders of breast),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -897,N70,(salpingitis and oophoritis),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -898,N71,"(inflammatory disease of uterus, except cervix)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -899,N72,(inflammatory disease of cervix uteri),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -900,N73,(other female pelvic inflammatory diseases),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -901,N74,(female pelvic inflammatory disorders in diseases classified elsewhere),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -902,N75,(diseases of bartholin's gland),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -903,N76,(other inflammation of vagina and vulva),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -904,N77,(vulvovaginal ulceration and inflammation in diseases classified elsewhere),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -905,N80,(endometriosis),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -906,N81,(female genital prolapse),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -907,N82,(fistulae involving female genital tract),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -908,N83,"(noninflammatory disorders of ovary, fallopian tube and broad ligament)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -909,N84,(polyp of female genital tract),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -910,N85,"(other noninflammatory disorders of uterus, except cervix)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -911,N86,(erosion and ectropion of cervix uteri),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -912,N87,(dysplasia of cervix uteri),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -913,N88,(other noninflammatory disorders of cervix uteri),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -914,N89,(other noninflammatory disorders of vagina),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -915,N90,(other noninflammatory disorders of vulva and perineum),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -916,N91,"(absent, scanty and rare menstruation)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -917,N92,"(excessive, frequent and irregular menstruation)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -918,N93,(other abnormal uterine and vaginal bleeding),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -919,N94,(pain and other conditions associated with female genital organs and menstrual cycle),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -920,N95,(menopausal and other perimenopausal disorders),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -921,N96,(habitual aborter),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -922,N97,(female infertility),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -923,N98,(complications associated with artificial fertilisation),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -924,N99,"(postprocedural disorders of genito-urinary system, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -925,O00,(ectopic pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -926,O01,(hydatidiform mole),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -927,O02,(other abnormal products of conception),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -928,O03,(spontaneous abortion),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -929,O04,(medical abortion),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -930,O05,(other abortion),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -931,O06,(unspecified abortion),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -932,O07,(failed attempted abortion),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -933,O08,(complications following abortion and ectopic and molar pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -934,O10,"(pre-existing hypertension complicating pregnancy, childbirth and the puerperium)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -935,O11,(pre-existing hypertensive disorder with superimposed proteinuria),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -936,O12,(gestational [pregnancy-induced] oedema and proteinuria without hypertension),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -937,O13,(gestational [pregnancy-induced] hypertension without significant proteinuria),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -938,O14,(gestational [pregnancy-induced] hypertension with significant proteinuria),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -939,O15,(eclampsia),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -940,O16,(unspecified maternal hypertension),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -941,O20,(haemorrhage in early pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -942,O21,(excessive vomiting in pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -943,O22,(venous complications in pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -944,O23,(infections of genito-urinary tract in pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -945,O24,(diabetes mellitus in pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -946,O25,(malnutrition in pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -947,O26,(maternal care for other conditions predominantly related to pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -948,O28,(abnormal findings on antenatal screening of mother),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -949,O29,(complications of anaesthesia during pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -950,O30,(multiple gestation),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -951,O31,(complications specific to multiple gestation),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -952,O32,(maternal care for known or suspected malpresentation of foetus),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -953,O33,(maternal care for known or suspected disproportion),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -954,O34,(maternal care for known or suspected abnormality of pelvic organs),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -955,O35,(maternal care for known or suspected foetal abnormality and damage),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -956,O36,(maternal care for other known or suspected foetal problems),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -957,O40,(polyhydramnios),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -958,O41,(other disorders of amniotic fluid and membranes),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -959,O42,(premature rupture of membranes),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -960,O43,(placental disorders),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -961,O44,(placenta praevia),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -962,O45,(premature separation of placenta [abruptio placentae]),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -963,O46,"(antepartum haemorrhage, not elsewhere classified)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -964,O47,(false labour),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -965,O48,(prolonged pregnancy),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -966,O60,(preterm delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -967,O61,(failed induction of labour),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -968,O62,(abnormalities of forces of labour),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -969,O63,(long labour),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -970,O64,(obstructed labour due to malposition and malpresentation of foetus),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -971,O65,(obstructed labour due to maternal pelvic abnormality),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -972,O66,(other obstructed labour),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -973,O67,"(labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -974,O68,(labour and delivery complicated by foetal stress [distress]),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -975,O69,(labour and delivery complicated by umbilical cord complications),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -976,O70,(perineal laceration during delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -977,O71,(other obstetric trauma),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -978,O72,(postpartum haemorrhage),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -979,O73,"(retained placenta and membranes, without haemorrhage)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -980,O74,(complications of anaesthesia during labour and delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -981,O75,"(other complications of labour and delivery, not elsewhere classified)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -982,O80,(single spontaneous delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -983,O81,(single delivery by forceps and vacuum extractor),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -984,O82,(single delivery by caesarean section),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -985,O83,(other assisted single delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -986,O84,(multiple delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -987,O85,(puerperal sepsis),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -988,O86,(other puerperal infections),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -989,O87,(venous complications in the puerperium),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -990,O88,(obstetric embolism),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -991,O89,(complications of anaesthesia during the puerperium),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -992,O90,"(complications of the puerperium, not elsewhere classified)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -993,O91,(infections of breast associated with childbirth),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -994,O92,(other disorders of breast and lactation associated with childbirth),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -995,O94,"(sequelae of complication of pregnancy, childbirth and the puerperium)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -996,O96,(death from any obstetric cause occurring more than 42 days but less than one year after delivery),female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -997,O98,"(maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -998,O99,"(other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium)",female_reproductive,female_reproductive,1.0,n70_n98_o00_o99,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -999,P00,(foetus and newborn affected by maternal conditions that may be unrelated to present pregnancy),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1000,P02,"(foetus and newborn affected by complications of placenta, cord and membranes)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1001,P03,(foetus and newborn affected by other complications of labour and delivery),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1002,P04,(foetus and newborn affected by noxious influences transmitted via placenta or breast milk),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1003,P05,(slow foetal growth and foetal malnutrition),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1004,P07,"(disorders related to short gestation and low birth weight, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1005,P08,(disorders related to long gestation and high birth weight),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1006,P10,(intracranial laceration and haemorrhage due to birth injury),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1007,P11,(other birth injuries to central nervous system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1008,P12,(birth injury to scalp),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1009,P13,(birth injury to skeleton),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1010,P14,(birth injury to peripheral nervous system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1011,P15,(other birth injuries),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1012,P20,(intra-uterine hypoxia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1013,P21,(birth asphyxia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1014,P22,(respiratory distress of newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1015,P23,(congenital pneumonia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1016,P24,(neonatal aspiration syndromes),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1017,P25,(interstitial emphysema and related conditions originating in the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1018,P26,(pulmonary haemorrhage originating in the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1019,P27,(chronic respiratory disease originating in the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1020,P28,(other respiratory conditions originating in the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1021,P29,(cardiovascular disorders originating in the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1022,P35,(congenital viral diseases),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1023,P36,(bacterial sepsis of newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1024,P37,(other congenital infectious and parasitic diseases),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1025,P38,(omphalitis of newborn with or without mild haemorrhage),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1026,P39,(other infections specific to the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1027,P50,(foetal blood loss),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1028,P51,(umbilical haemorrhage of newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1029,P52,(intracranial nontraumatic haemorrhage of foetus and newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1030,P53,(haemorrhagic disease of foetus and newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1031,P54,(other neonatal haemorrhages),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1032,P55,(haemolytic disease of foetus and newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1033,P58,(neonatal jaundice due to other excessive haemolysis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1034,P59,(neonatal jaundice from other and unspecified causes),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1035,P61,(other perinatal haematological disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1036,P70,(transitory disorders of carbohydrate metabolism specific to foetus and newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1037,P71,(transitory neonatal disorders of calcium and magnesium metabolism),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1038,P78,(other perinatal digestive system disorders),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1039,P83,(other conditions of integument specific to foetus and newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1040,P91,(other disturbances of cerebral status of newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1041,P92,(feeding problems of newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1042,P94,(disorders of muscle tone of newborn),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1043,P95,(foetal death of unspecified cause),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1044,P96,(other conditions originating in the perinatal period),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1045,Q00,(anencephaly and similar malformations),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1046,Q01,(encephalocele),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1047,Q02,(microcephaly),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1048,Q03,(congenital hydrocephalus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1049,Q04,(other congenital malformations of brain),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1050,Q05,(spina bifida),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1051,Q06,(other congenital malformations of spinal cord),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1052,Q07,(other congenital malformations of nervous system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1053,Q10,"(congenital malformations of eyelid, lachrymal apparatus and orbit)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1054,Q11,"(anophthalmos, microphthalmos and macrophthalmos)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1055,Q12,(congenital lens malformations),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1056,Q13,(congenital malformations of anterior segment of eye),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1057,Q14,(congenital malformations of posterior segment of eye),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1058,Q15,(other congenital malformations of eye),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1059,Q16,(congenital malformations of ear causing impairment of hearing),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1060,Q17,(other congenital malformations of ear),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1061,Q18,(other congenital malformations of face and neck),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1062,Q20,(congenital malformations of cardiac chambers and connexions),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1063,Q21,(congenital malformations of cardiac septa),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1064,Q22,(congenital malformations of pulmonary and tricuspid valves),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1065,Q23,(congenital malformations of aortic and mitral valves),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1066,Q24,(other congenital malformations of heart),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1067,Q25,(congenital malformations of great arteries),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1068,Q26,(congenital malformations of great veins),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1069,Q27,(other congenital malformations of peripheral vascular system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1070,Q28,(other congenital malformations of circulatory system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1071,Q30,(congenital malformations of nose),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1072,Q31,(congenital malformations of larynx),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1073,Q32,(congenital malformations of trachea and bronchus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1074,Q33,(congenital malformations of lung),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1075,Q34,(other congenital malformations of respiratory system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1076,Q35,(cleft palate),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1077,Q36,(cleft lip),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1078,Q37,(cleft palate with cleft lip),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1079,Q38,"(other congenital malformations of tongue, mouth and pharynx)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1080,Q39,(congenital malformations of oesophagus),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1081,Q40,(other congenital malformations of upper alimentary tract),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1082,Q41,"(congenital absence, atresia and stenosis of small intestine)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1083,Q42,"(congenital absence, atresia and stenosis of large intestine)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1084,Q43,(other congenital malformations of intestine),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1085,Q44,"(congenital malformations of gallbladder, bile ducts and liver)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1086,Q45,(other congenital malformations of digestive system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1087,Q50,"(congenital malformations of ovaries, fallopian tubes and broad ligaments)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1088,Q51,(congenital malformations of uterus and cervix),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1089,Q52,(other congenital malformations of female genitalia),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1090,Q53,(undescended testicle),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1091,Q54,(hypospadias),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1092,Q55,(other congenital malformations of male genital organs),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1093,Q56,(indeterminate sex and pseudohermaphroditism),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1094,Q60,(renal agenesis and other reduction defects of kidney),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1095,Q61,(cystic kidney disease),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1096,Q62,(congenital obstructive defects of renal pelvis and congenital malformations of ureter),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1097,Q63,(other congenital malformations of kidney),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1098,Q64,(other congenital malformations of urinary system),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1099,Q65,(congenital deformities of hip),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1100,Q66,(congenital deformities of feet),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1101,Q67,"(congenital musculoskeletal deformities of head, face, spine and chest)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1102,Q68,(other congenital musculoskeletal deformities),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1103,Q69,(polydactyly),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1104,Q70,(syndactyly),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1105,Q71,(reduction defects of upper limb),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1106,Q72,(reduction defects of lower limb),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1107,Q73,(reduction defects of unspecified limb),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1108,Q74,(other congenital malformations of limb(s)),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1109,Q75,(other congenital malformations of skull and face bones),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1110,Q76,(congenital malformations of spine and bony thorax),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1111,Q77,(osteochondrodysplasia with defects of growth of tubular bones and spine),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1112,Q78,(other osteochondrodysplasias),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1113,Q79,"(congenital malformations of musculoskeletal system, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1114,Q80,(congenital ichthyosis),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1115,Q81,(epidermolysis bullosa),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1116,Q82,(other congenital malformations of skin),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1117,Q83,(congenital malformations of breast),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1118,Q84,(other congenital malformations of integument),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1119,Q85,"(phakomatoses, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1120,Q86,"(congenital malformation syndromes due to known exogenous causes, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1121,Q87,(other specified congenital malformation syndromes affecting multiple systems),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1122,Q89,"(other congenital malformations, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1123,Q90,(down's syndrome),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1124,Q91,(edwards' syndrome and patau's syndrome),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1125,Q92,"(other trisomies and partial trisomies of the autosomes, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1126,Q93,"(monosomies and deletions from the autosomes, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1127,Q95,"(balanced rearrangements and structural markers, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1128,Q96,(turner's syndrome),,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1129,Q97,"(other sex chromosome abnormalities, female phenotype, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1130,Q98,"(other sex chromosome abnormalities, male phenotype, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1131,Q99,"(other chromosome abnormalities, not elsewhere classified)",,,0.0,unmapped_no_organ_rule,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1132,CXX,Unknown Cancer,,,0.0,unmapped_non_icd10,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1133,C00,Malignant neoplasm of lip,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1134,C01,Malignant neoplasm of base of tongue,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1135,C02,Malignant neoplasm of other and unspecified parts of tongue,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1136,C03,Malignant neoplasm of gum,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1137,C04,Malignant neoplasm of floor of mouth,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1138,C05,Malignant neoplasm of palate,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1139,C06,Malignant neoplasm of other and unspecified parts of mouth,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1140,C07,Malignant neoplasm of parotid gland,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1141,C08,Malignant neoplasm of other and unspecified major salivary glands,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1142,C09,Malignant neoplasm of tonsil,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1143,C10,Malignant neoplasm of oropharynx,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1144,C11,Malignant neoplasm of nasopharynx,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1145,C12,Malignant neoplasm of pyriform sinus,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1146,C13,Malignant neoplasm of hypopharynx,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1147,C14,"Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1148,C15,Malignant neoplasm of oesophagus,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1149,C16,Malignant neoplasm of stomach,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1150,C17,Malignant neoplasm of small intestine,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1151,C18,Malignant neoplasm of colon,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1152,C19,Malignant neoplasm of rectosigmoid junction,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1153,C20,Malignant neoplasm of rectum,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1154,C21,Malignant neoplasm of anus and anal canal,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1155,C22,Malignant neoplasm of liver and intrahepatic bile ducts,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1156,C23,Malignant neoplasm of gallbladder,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1157,C24,Malignant neoplasm of other and unspecified parts of biliary tract,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1158,C25,Malignant neoplasm of pancreas,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1159,C26,Malignant neoplasm of other and ill-defined digestive organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1160,C30,Malignant neoplasm of nasal cavity and middle ear,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1161,C31,Malignant neoplasm of accessory sinuses,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1162,C32,Malignant neoplasm of larynx,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1163,C33,Malignant neoplasm of trachea,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1164,C34,Malignant neoplasm of bronchus and lung,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1165,C37,Malignant neoplasm of thymus,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1166,C38,"Malignant neoplasm of heart, mediastinum and pleura",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1167,C39,Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1168,C40,Malignant neoplasm of bone and articular cartilage of limbs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1169,C41,Malignant neoplasm of bone and articular cartilage of other and unspecified sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1170,C42,hematopoietic and reticuloendothelial systems (ICD-O-3 specific),neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1171,C43,Malignant melanoma of skin,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1172,C44,Other malignant neoplasms of skin,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1173,C45,Mesothelioma,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1174,C46,Kaposi's sarcoma,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1175,C47,Malignant neoplasm of peripheral nerves and autonomic nervous system,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1176,C48,Malignant neoplasm of retroperitoneum and peritoneum,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1177,C49,Malignant neoplasm of other connective and soft tissue,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1178,C50,Malignant neoplasm of breast,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1179,C51,Malignant neoplasm of vulva,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1180,C52,Malignant neoplasm of vagina,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1181,C53,Malignant neoplasm of cervix uteri,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1182,C54,Malignant neoplasm of corpus uteri,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1183,C55,"Malignant neoplasm of uterus, part unspecified",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1184,C56,Malignant neoplasm of ovary,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1185,C57,Malignant neoplasm of other and unspecified female genital organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1186,C58,Malignant neoplasm of placenta,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1187,C60,Malignant neoplasm of penis,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1188,C61,Malignant neoplasm of prostate,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1189,C62,Malignant neoplasm of testis,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1190,C63,Malignant neoplasm of other and unspecified male genital organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1191,C64,"Malignant neoplasm of kidney, except renal pelvis",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1192,C65,Malignant neoplasm of renal pelvis,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1193,C66,Malignant neoplasm of ureter,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1194,C67,Malignant neoplasm of bladder,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1195,C68,Malignant neoplasm of other and unspecified urinary organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1196,C69,Malignant neoplasm of eye and adnexa,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1197,C70,Malignant neoplasm of meninges,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1198,C71,Malignant neoplasm of brain,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1199,C72,"Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1200,C73,Malignant neoplasm of thyroid gland,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1201,C74,Malignant neoplasm of adrenal gland,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1202,C75,Malignant neoplasm of other endocrine glands and related structures,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1203,C76,Malignant neoplasm of other and ill-defined sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1204,C77,Secondary and unspecified malignant neoplasm of lymph nodes,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1205,C78,Secondary malignant neoplasm of respiratory and digestive organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1206,C79,Secondary malignant neoplasm of other sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1207,C80,Malignant neoplasm without specification of site,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1208,C81,Hodgkin's disease,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1209,C82,Follicular [nodular] non-Hodgkin's lymphoma,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1210,C83,Diffuse non-Hodgkin's lymphoma,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1211,C84,Peripheral and cutaneous T-cell lymphomas,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1212,C85,Other and unspecified types of non-Hodgkin's lymphoma,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1213,C86,Other specified types of T/NK-cell lymphoma,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1214,C88,Malignant immunoproliferative diseases,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1215,C90,Multiple myeloma and malignant plasma cell neoplasms,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1216,C91,Lymphoid leukaemia,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1217,C92,Myeloid leukaemia,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1218,C93,Monocytic leukaemia,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1219,C94,Other leukaemias of specified cell type,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1220,C95,Leukaemia of unspecified cell type,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1221,C96,"Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1222,C97,Malignant neoplasms of independent (primary) multiple sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1223,D00,"Carcinoma in situ of oral cavity, oesophagus and stomach",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1224,D01,Carcinoma in situ of other and unspecified digestive organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1225,D02,Carcinoma in situ of middle ear and respiratory system,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1226,D03,Melanoma in situ,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1227,D04,Carcinoma in situ of skin,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1228,D05,Carcinoma in situ of breast,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1229,D06,Carcinoma in situ of cervix uteri,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1230,D07,Carcinoma in situ of other and unspecified genital organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1231,D09,Carcinoma in situ of other and unspecified sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1232,D10,Benign neoplasm of mouth and pharynx,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1233,D11,Benign neoplasm of major salivary glands,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1234,D12,"Benign neoplasm of colon, rectum, anus and anal canal",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1235,D13,Benign neoplasm of other and ill-defined parts of digestive system,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1236,D15,Benign neoplasm of other and unspecified intrathoracic organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1237,D16,Benign neoplasm of bone and articular cartilage,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1238,D18,"Haemangioma and lymphangioma, any site",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1239,D27,Benign neoplasm of ovary,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1240,D30,Benign neoplasm of urinary organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1241,D32,Benign neoplasm of meninges,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1242,D33,Benign neoplasm of brain and other parts of central nervous system,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1243,D34,Benign neoplasm of thyroid gland,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1244,D35,Benign neoplasm of other and unspecified endocrine glands,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1245,D36,Benign neoplasm of other and unspecified sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1246,D37,Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1247,D38,Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1248,D39,Neoplasm of uncertain or unknown behaviour of female genital organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1249,D40,Neoplasm of uncertain or unknown behaviour of male genital organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1250,D41,Neoplasm of uncertain or unknown behaviour of urinary organs,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1251,D42,Neoplasm of uncertain or unknown behaviour of meninges,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1252,D43,Neoplasm of uncertain or unknown behaviour of brain and central nervous system,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1253,D44,Neoplasm of uncertain or unknown behaviour of endocrine glands,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1254,D45,Polycythaemia vera,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1255,D46,Myelodysplastic syndromes,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1256,D47,"Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue",neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1257,D48,Neoplasm of uncertain or unknown behaviour of other and unspecified sites,neoplasm,neoplasm,1.0,neoplasm_c00_d48,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules -1258,DEATH,,,,0.0,unmapped_non_icd10,organ-age-inspired clinical systems based on Oh et al. Nature 2023; single-label ICD-10 rules diff --git a/plot_deephealth_index_trajectories.py b/plot_deephealth_index_trajectories.py deleted file mode 100644 index f61ca87..0000000 --- a/plot_deephealth_index_trajectories.py +++ /dev/null @@ -1,214 +0,0 @@ -from __future__ import annotations - -import argparse -from pathlib import Path - -try: - import matplotlib - - matplotlib.use("Agg") - import matplotlib.pyplot as plt -except ModuleNotFoundError as exc: - raise ModuleNotFoundError( - "plot_deephealth_index_trajectories.py requires matplotlib. " - "Install it in the server environment before running this script." - ) from exc -import numpy as np -import pandas as pd - - -REQUIRED_COLUMNS = { - "patient_id", - "sex", - "landmark_age", - "index_type", - "index_id", - "index_label", - "index_value", -} - - -def _sex_label(value: object) -> str: - text = str(value).strip().lower() - if text in {"0", "0.0", "female", "f", "woman"}: - return "female" - if text in {"1", "1.0", "male", "m", "man"}: - return "male" - return text or "unknown" - - -def _load_index_csv(path: Path) -> pd.DataFrame: - header = pd.read_csv(path, nrows=0) - missing = sorted(REQUIRED_COLUMNS - set(header.columns)) - if missing: - raise ValueError(f"{path} is missing required columns: {missing}") - df = pd.read_csv(path, usecols=sorted(REQUIRED_COLUMNS)) - df["sex_label"] = df["sex"].map(_sex_label) - df["landmark_age"] = pd.to_numeric(df["landmark_age"], errors="raise") - df["index_value"] = pd.to_numeric(df["index_value"], errors="raise") - return df - - -def _sample_patients(df: pd.DataFrame, *, n_per_sex: int, seed: int) -> dict[str, np.ndarray]: - rng = np.random.default_rng(int(seed)) - samples: dict[str, np.ndarray] = {} - for sex_label in ["female", "male"]: - ids = np.asarray(sorted(df.loc[df["sex_label"] == sex_label, "patient_id"].unique())) - if ids.size == 0: - samples[sex_label] = np.asarray([], dtype=np.int64) - continue - samples[sex_label] = np.asarray( - rng.choice(ids, size=min(int(n_per_sex), int(ids.size)), replace=False) - ) - return samples - - -def _plot_sampled_trajectories( - df: pd.DataFrame, - *, - index_type: str, - selected: dict[str, np.ndarray], - output_dir: Path, -) -> None: - sub = df[df["index_type"] == index_type].copy() - if sub.empty: - return - if index_type == "organ_involvement": - total = ( - sub.groupby(["patient_id", "sex_label", "landmark_age"], as_index=False)[ - "index_value" - ] - .mean() - .rename(columns={"index_value": "trajectory_value"}) - ) - title = "mean organ involvement" - else: - total = sub.rename(columns={"index_value": "trajectory_value"}) - title = "frailty risk" - - mean_df = ( - total.groupby(["sex_label", "landmark_age"], as_index=False)["trajectory_value"] - .mean() - .sort_values("landmark_age") - ) - - fig, ax = plt.subplots(figsize=(9.5, 5.5), dpi=160) - colors = {"female": "#b83280", "male": "#2563eb"} - for sex_label in ["female", "male"]: - for pid in selected.get(sex_label, np.asarray([], dtype=np.int64)): - one = total[total["patient_id"] == pid].sort_values("landmark_age") - if one.empty: - continue - ax.plot( - one["landmark_age"], - one["trajectory_value"], - color=colors.get(sex_label, "0.4"), - alpha=0.22, - linewidth=1.2, - ) - mean_one = mean_df[mean_df["sex_label"] == sex_label] - if not mean_one.empty: - ax.plot( - mean_one["landmark_age"], - mean_one["trajectory_value"], - color=colors.get(sex_label, "0.4"), - linewidth=2.6, - label=f"{sex_label} mean", - ) - - ax.set_title(f"{index_type}: sampled trajectories and sex-specific means") - ax.set_xlabel("Landmark age") - ax.set_ylabel(title) - ax.grid(True, alpha=0.25) - ax.legend(frameon=False) - fig.tight_layout() - fig.savefig(output_dir / f"{index_type}_sampled_trajectories_by_sex.png") - plt.close(fig) - - -def _plot_top_dimensions( - df: pd.DataFrame, - *, - output_dir: Path, - top_n: int, -) -> None: - sub = df[df["index_type"] == "organ_involvement"].copy() - if sub.empty: - return - order = ( - sub.groupby("index_id")["index_value"] - .mean() - .sort_values(ascending=False) - .head(int(top_n)) - .index.tolist() - ) - n = len(order) - if n == 0: - return - ncols = min(3, n) - nrows = int(np.ceil(n / ncols)) - fig, axes = plt.subplots(nrows, ncols, figsize=(4.0 * ncols, 3.0 * nrows), dpi=160) - axes_arr = np.asarray(axes).reshape(-1) - colors = {"female": "#b83280", "male": "#2563eb"} - for ax, index_id in zip(axes_arr, order): - one = sub[sub["index_id"] == index_id] - mean_df = ( - one.groupby(["sex_label", "landmark_age"], as_index=False)["index_value"] - .mean() - .sort_values("landmark_age") - ) - for sex_label in ["female", "male"]: - m = mean_df[mean_df["sex_label"] == sex_label] - if not m.empty: - ax.plot( - m["landmark_age"], - m["index_value"], - color=colors.get(sex_label, "0.4"), - linewidth=1.8, - label=sex_label, - ) - ax.set_title(str(index_id), fontsize=9) - ax.set_xlabel("Age") - ax.set_ylabel("Organ involvement") - ax.grid(True, alpha=0.22) - for ax in axes_arr[n:]: - ax.axis("off") - handles, labels = axes_arr[0].get_legend_handles_labels() - if handles: - fig.legend(handles, labels, loc="upper right", frameon=False) - fig.suptitle("organ_involvement: sex-specific mean trajectories for top dimensions") - fig.tight_layout(rect=(0, 0, 0.98, 0.96)) - fig.savefig(output_dir / "organ_involvement_top_dimensions_by_sex.png") - plt.close(fig) - - -def main() -> None: - parser = argparse.ArgumentParser( - description="Plot DeepHealth organ involvement and frailty risk trajectories." - ) - parser.add_argument("--input_csv", type=str, required=True) - parser.add_argument("--output_dir", type=str, default=None) - parser.add_argument("--n_per_sex", type=int, default=10) - parser.add_argument("--seed", type=int, default=2026) - parser.add_argument("--top_n", type=int, default=12) - args = parser.parse_args() - - input_csv = Path(args.input_csv) - output_dir = Path(args.output_dir) if args.output_dir else input_csv.parent - output_dir.mkdir(parents=True, exist_ok=True) - df = _load_index_csv(input_csv) - selected = _sample_patients(df, n_per_sex=int(args.n_per_sex), seed=int(args.seed)) - for index_type in ["organ_involvement", "frailty_risk"]: - _plot_sampled_trajectories( - df, - index_type=index_type, - selected=selected, - output_dir=output_dir, - ) - _plot_top_dimensions(df, output_dir=output_dir, top_n=int(args.top_n)) - print(f"Input: {input_csv}") - print(f"Output directory: {output_dir}") - - -if __name__ == "__main__": - main() diff --git a/uk_hfrs_label_mapping.csv b/uk_hfrs_label_mapping.csv deleted file mode 100644 index c49f1a3..0000000 --- a/uk_hfrs_label_mapping.csv +++ /dev/null @@ -1,1257 +0,0 @@ -token_id,label_code,label_name,hfrs_dimension_id,hfrs_dimension,hfrs_key_area,hfrs_weight,hfrs_source,match_source -3,A00,(cholera),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -4,A01,(typhoid and paratyphoid fevers),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -5,A02,(other salmonella infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -6,A03,(shigellosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -7,A04,(other bacterial intestinal infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.1,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -8,A05,(other bacterial foodborne intoxications),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -9,A06,(amoebiasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -10,A07,(other protozoal intestinal diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -11,A08,(viral and other specified intestinal infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -12,A09,(diarrhoea and gastro-enteritis of presumed infectious origin),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.1,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -13,A15,"(respiratory tuberculosis, bacteriologically and histologically confirmed)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -14,A16,"(respiratory tuberculosis, not confirmed bacteriologically or histologically)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -15,A17,(tuberculosis of nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -16,A18,(tuberculosis of other organs),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -17,A19,(miliary tuberculosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -18,A20,(plague),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -19,A22,(anthrax),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -20,A23,(brucellosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -21,A24,(glanders and melioidosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -22,A25,(rat-bite fevers),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -23,A26,(erysipeloid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -24,A27,(leptospirosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -25,A28,"(other zoonotic bacterial diseases, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -26,A30,(leprosy [hansen's disease]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -27,A31,(infection due to other mycobacteria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -28,A32,(listeriosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -29,A33,(tetanus neonatorum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -30,A35,(other tetanus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -31,A36,(diphtheria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -32,A37,(whooping cough),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -33,A38,(scarlet fever),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -34,A39,(meningococcal infection),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -35,A40,(streptococcal septicaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -36,A41,(other septicaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.6,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -37,A42,(actinomycosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -38,A43,(nocardiosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -39,A44,(bartonellosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -40,A46,(erysipelas),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -41,A48,"(other bacterial diseases, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -42,A49,(bacterial infection of unspecified site),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -43,A50,(congenital syphilis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -44,A51,(early syphilis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -45,A52,(late syphilis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -46,A53,(other and unspecified syphilis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -47,A54,(gonococcal infection),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -48,A55,(chlamydial lymphogranuloma (venereum)),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -49,A56,(other sexually transmitted chlamydial diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -50,A58,(granuloma inguinale),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -51,A59,(trichomoniasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -52,A60,(anogenital herpesviral [herpes simplex] infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -53,A63,"(other predominantly sexually transmitted diseases, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -54,A64,(unspecified sexually transmitted disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -55,A66,(yaws),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -56,A67,(pinta [carate]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -57,A68,(relapsing fevers),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -58,A69,(other spirochaetal infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -59,A70,(chlamydia psittaci infection),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -60,A71,(trachoma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -61,A74,(other diseases caused by chlamydiae),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -62,A75,(typhus fever),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -63,A77,(spotted fever [tick-borne rickettsioses]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -64,A78,(q fever),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -65,A79,(other rickettsioses),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -66,A80,(acute poliomyelitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -67,A81,(atypical virus infections of central nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -68,A82,(rabies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -69,A83,(mosquito-borne viral encephalitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -70,A84,(tick-borne viral encephalitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -71,A85,"(other viral encephalitis, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -72,A86,(unspecified viral encephalitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -73,A87,(viral meningitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -74,A88,"(other viral infections of central nervous system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -75,A89,(unspecified viral infection of central nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -76,A90,(dengue fever [classical dengue]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -77,A91,(dengue haemorrhagic fever),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -78,A92,(other mosquito-borne viral fevers),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -79,A93,"(other arthropod-borne viral fevers, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -80,A94,(unspecified arthropod-borne viral fever),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -81,A95,(yellow fever),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -82,A97,(dengue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -83,A98,"(other viral haemorrhagic fevers, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -84,B00,(herpesviral [herpes simplex] infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -85,B01,(varicella [chickenpox]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -86,B02,(zoster [herpes zoster]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -87,B03,(smallpox),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -88,B05,(measles),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -89,B06,(rubella [german measles]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -90,B07,(viral warts),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -91,B08,"(other viral infections characterised by skin and mucous membrane lesions, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -92,B09,(unspecified viral infection characterised by skin and mucous membrane lesions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -93,B15,(acute hepatitis a),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -94,B16,(acute hepatitis b),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -95,B17,(other acute viral hepatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -96,B18,(chronic viral hepatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -97,B19,(unspecified viral hepatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -98,B20,(human immunodeficiency virus [hiv] disease resulting in infectious and parasitic diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -99,B21,(human immunodeficiency virus [hiv] disease resulting in malignant neoplasms),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -100,B22,(human immunodeficiency virus [hiv] disease resulting in other specified diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -101,B23,(human immunodeficiency virus [hiv] disease resulting in other conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -102,B24,(unspecified human immunodeficiency virus [hiv] disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -103,B25,(cytomegaloviral disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -104,B26,(mumps),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -105,B27,(infectious mononucleosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -106,B30,(viral conjunctivitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -107,B33,"(other viral diseases, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -108,B34,(viral infection of unspecified site),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -109,B35,(dermatophytosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -110,B36,(other superficial mycoses),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -111,B37,(candidiasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -112,B38,(coccidioidomycosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -113,B39,(histoplasmosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -114,B40,(blastomycosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -115,B42,(sporotrichosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -116,B43,(chromomycosis and phaeomycotic abscess),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -117,B44,(aspergillosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -118,B45,(cryptococcosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -119,B46,(zygomycosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -120,B47,(mycetoma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -121,B48,"(other mycoses, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -122,B49,(unspecified mycosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -123,B50,(plasmodium falciparum malaria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -124,B51,(plasmodium vivax malaria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -125,B52,(plasmodium malariae malaria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -126,B53,(other parasitologically confirmed malaria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -127,B54,(unspecified malaria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -128,B55,(leishmaniasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -129,B57,(chagas' disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -130,B58,(toxoplasmosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -131,B59,(pneumocystosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -132,B60,"(other protozoal diseases, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -133,B65,(schistosomiasis [bilharziasis]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -134,B66,(other fluke infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -135,B67,(echinococcosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -136,B68,(taeniasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -137,B69,(cysticercosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -138,B71,(other cestode infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -139,B73,(onchocerciasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -140,B74,(filariasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -141,B75,(trichinellosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -142,B76,(hookworm diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -143,B77,(ascariasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -144,B78,(strongyloidiasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -145,B79,(trichuriasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -146,B80,(enterobiasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -147,B81,"(other intestinal helminthiases, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -148,B82,(unspecified intestinal parasitism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -149,B83,(other helminthiases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -150,B85,(pediculosis and phthiriasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -151,B86,(scabies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -152,B87,(myiasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -153,B88,(other infestations),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -154,B89,(unspecified parasitic disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -155,B90,(sequelae of tuberculosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -156,B91,(sequelae of poliomyelitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -157,B94,(sequelae of other and unspecified infectious and parasitic diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -158,B95,(streptococcus and staphylococcus as the cause of diseases classified to other chapters),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.7,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -159,B96,(other bacterial agents as the cause of diseases classified to other chapters),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.9,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -160,B97,(viral agents as the cause of diseases classified to other chapters),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -161,B98,(other specified infectious agents as the cause of diseases classified to other chapters),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -162,B99,(other and unspecified infectious diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -163,D50,(iron deficiency anaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -164,D51,(vitamin b12 deficiency anaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -165,D52,(folate deficiency anaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -166,D53,(other nutritional anaemias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -167,D55,(anaemia due to enzyme disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -168,D56,(thalassaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -169,D57,(sickle-cell disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -170,D58,(other hereditary haemolytic anaemias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -171,D59,(acquired haemolytic anaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -172,D60,(acquired pure red cell aplasia [erythroblastopenia]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -173,D61,(other aplastic anaemias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -174,D62,(acute posthaemorrhagic anaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -175,D63,(anaemia in chronic diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -176,D64,(other anaemias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -177,D65,(disseminated intravascular coagulation [defibrination syndrome]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -178,D66,(hereditary factor viii deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -179,D67,(hereditary factor ix deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -180,D68,(other coagulation defects),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -181,D69,(purpura and other haemorrhagic conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -182,D70,(agranulocytosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -183,D71,(functional disorders of polymorphonuclear neutrophils),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -184,D72,(other disorders of white blood cells),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -185,D73,(diseases of spleen),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -186,D74,(methaemoglobinaemia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -187,D75,(other diseases of blood and blood-forming organs),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -188,D76,(certain diseases involving lymphoreticular tissue and reticulohistiocytic system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -189,D77,(other disorders of blood and blood-forming organs in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -190,D80,(immunodeficiency with predominantly antibody defects),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -191,D81,(combined immunodeficiencies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -192,D82,(immunodeficiency associated with other major defects),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -193,D83,(common variable immunodeficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -194,D84,(other immunodeficiencies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -195,D86,(sarcoidosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -196,D89,"(other disorders involving the immune mechanism, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -197,E01,(iodine-deficiency-related thyroid disorders and allied conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -198,E02,(subclinical iodine-deficiency hypothyroidism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -199,E03,(other hypothyroidism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -200,E04,(other non-toxic goitre),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -201,E05,(thyrotoxicosis [hyperthyroidism]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.9,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -202,E06,(thyroiditis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -203,E07,(other disorders of thyroid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -204,E10,(insulin-dependent diabetes mellitus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -205,E11,(non-insulin-dependent diabetes mellitus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -206,E12,(malnutrition-related diabetes mellitus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -207,E13,(other specified diabetes mellitus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -208,E14,(unspecified diabetes mellitus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -209,E15,(nondiabetic hypoglycaemic coma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -210,E16,(other disorders of pancreatic internal secretion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -211,E20,(hypoparathyroidism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -212,E21,(hyperparathyroidism and other disorders of parathyroid gland),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -213,E22,(hyperfunction of pituitary gland),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -214,E23,(hypofunction and other disorders of pituitary gland),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -215,E24,(cushing's syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -216,E25,(adrenogenital disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -217,E26,(hyperaldosteronism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -218,E27,(other disorders of adrenal gland),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -219,E28,(ovarian dysfunction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -220,E29,(testicular dysfunction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -221,E30,"(disorders of puberty, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -222,E31,(polyglandular dysfunction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -223,E32,(diseases of thymus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -224,E34,(other endocrine disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -225,E35,(disorders of endocrine glands in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -226,E41,(nutritional marasmus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -227,E43,(unspecified severe protein-energy malnutrition),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -228,E44,(protein-energy malnutrition of moderate and mild degree),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -229,E45,(retarded development following protein-energy malnutrition),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -230,E46,(unspecified protein-energy malnutrition),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -231,E50,(vitamin a deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -232,E51,(thiamine deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -233,E52,(niacin deficiency [pellagra]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -234,E53,(deficiency of other b group vitamins),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.9,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -235,E54,(ascorbic acid deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -236,E55,(vitamin d deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -237,E56,(other vitamin deficiencies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -238,E58,(dietary calcium deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -239,E59,(dietary selenium deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -240,E60,(dietary zinc deficiency),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -241,E61,(deficiency of other nutrient elements),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -242,E63,(other nutritional deficiencies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -243,E64,(sequelae of malnutrition and other nutritional deficiencies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -244,E65,(localised adiposity),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -245,E66,(obesity),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -246,E67,(other hyperalimentation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -247,E68,(sequelae of hyperalimentation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -248,E70,(disorders of aromatic amino-acid metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -249,E71,(disorders of branched-chain amino-acid metabolism and fatty-acid metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -250,E72,(other disorders of amino-acid metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -251,E73,(lactose intolerance),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -252,E74,(other disorders of carbohydrate metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -253,E75,(disorders of sphingolipid metabolism and other lipid storage disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -254,E76,(disorders of glycosaminoglycan metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -255,E77,(disorders of glycoprotein metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -256,E78,(disorders of lipoprotein metabolism and other lipidaemias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -257,E79,(disorders of purine and pyrimidine metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -258,E80,(disorders of porphyrin and bilirubin metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -259,E83,(disorders of mineral metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -260,E84,(cystic fibrosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -261,E85,(amyloidosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -262,E86,(volume depletion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.3,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -263,E87,"(other disorders of fluid, electrolyte and acid-base balance)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.3,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -264,E88,(other metabolic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -265,E89,"(postprocedural endocrine and metabolic disorders, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -266,F00,(dementia in alzheimer's disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,7.1,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -267,F01,(vascular dementia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -268,F02,(dementia in other diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -269,F03,(unspecified dementia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.1,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -270,F04,"(organic amnesic syndrome, not induced by alcohol and other psychoactive substances)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -271,F05,"(delirium, not induced by alcohol and other psychoactive substances)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,3.2,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -272,F06,(other mental disorders due to brain damage and dysfunction and to physical disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -273,F07,"(personality and behavioural disorders due to brain disease, damage and dysfunction)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -274,F09,(unspecified organic or symptomatic mental disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -275,F10,(mental and behavioural disorders due to use of alcohol),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.7,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -276,F11,(mental and behavioural disorders due to use of opioids),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -277,F12,(mental and behavioural disorders due to use of cannabinoids),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -278,F13,(mental and behavioural disorders due to use of sedatives or hypnotics),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -279,F14,(mental and behavioural disorders due to use of cocaine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -280,F15,"(mental and behavioural disorders due to use of other stimulants, including caffeine)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -281,F16,(mental and behavioural disorders due to use of hallucinogens),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -282,F17,(mental and behavioural disorders due to use of tobacco),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -283,F18,(mental and behavioural disorders due to use of volatile solvents),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -284,F19,(mental and behavioural disorders due to multiple drug use and use of other psychoactive substances),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -285,F20,(schizophrenia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -286,F21,(schizotypal disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -287,F22,(persistent delusional disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -288,F23,(acute and transient psychotic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -289,F24,(induced delusional disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -290,F25,(schizoaffective disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -291,F28,(other nonorganic psychotic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -292,F29,(unspecified nonorganic psychosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -293,F30,(manic episode),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -294,F31,(bipolar affective disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -295,F32,(depressive episode),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.5,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -296,F33,(recurrent depressive disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -297,F34,(persistent mood [affective] disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -298,F38,(other mood [affective] disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -299,F39,(unspecified mood [affective] disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -300,F40,(phobic anxiety disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -301,F41,(other anxiety disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -302,F42,(obsessive-compulsive disorder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -303,F43,"(reaction to severe stress, and adjustment disorders)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -304,F44,(dissociative [conversion] disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -305,F45,(somatoform disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -306,F48,(other neurotic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -307,F50,(eating disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -308,F51,(nonorganic sleep disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -309,F52,"(sexual dysfunction, not caused by organic disorder or disease)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -310,F53,"(mental and behavioural disorders associated with the puerperium, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -311,F54,(psychological and behavioural factors associated with disorders or diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -312,F55,(abuse of non-dependence-producing substances),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -313,F59,(unspecified behavioural syndromes associated with physiological disturbances and physical factors),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -314,F60,(specific personality disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -315,F61,(mixed and other personality disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -316,F62,"(enduring personality changes, not attributable to brain damage and disease)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -317,F63,(habit and impulse disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -318,F64,(gender identity disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -319,F65,(disorders of sexual preference),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -320,F66,(psychological and behavioural disorders associated with sexual development and orientation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -321,F68,(other disorders of adult personality and behaviour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -322,F69,(unspecified disorder of adult personality and behaviour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -323,F70,(mild mental retardation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -324,F71,(moderate mental retardation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -325,F72,(severe mental retardation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -326,F78,(other mental retardation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -327,F79,(unspecified mental retardation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -328,F80,(specific developmental disorders of speech and language),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -329,F81,(specific developmental disorders of scholastic skills),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -330,F82,(specific developmental disorder of motor function),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -331,F83,(mixed specific developmental disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -332,F84,(pervasive developmental disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -333,F88,(other disorders of psychological development),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -334,F89,(unspecified disorder of psychological development),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -335,F90,(hyperkinetic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -336,F91,(conduct disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -337,F92,(mixed disorders of conduct and emotions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -338,F93,(emotional disorders with onset specific to childhood),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -339,F94,(disorders of social functioning with onset specific to childhood and adolescence),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -340,F95,(tic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -341,F98,(other behavioural and emotional disorders with onset usually occurring in childhood and adolescence),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -342,F99,"(mental disorder, not otherwise specified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -343,G00,"(bacterial meningitis, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -344,G01,(meningitis in bacterial diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -345,G02,(meningitis in other infectious and parasitic diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -346,G03,(meningitis due to other and unspecified causes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -347,G04,"(encephalitis, myelitis and encephalomyelitis)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -348,G05,"(encephalitis, myelitis and encephalomyelitis in diseases classified elsewhere)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -349,G06,(intracranial and intraspinal abscess and granuloma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -350,G07,(intracranial and intraspinal abscess and granuloma in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -351,G08,(intracranial and intraspinal phlebitis and thrombophlebitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -352,G09,(sequelae of inflammatory diseases of central nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -353,G10,(huntington's disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -354,G11,(hereditary ataxia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -355,G12,(spinal muscular atrophy and related syndromes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -356,G13,(systemic atrophies primarily affecting central nervous system in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -357,G14,(postpolio syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -358,G20,(parkinson's disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.8,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -359,G21,(secondary parkinsonism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -360,G22,(parkinsonism in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -361,G23,(other degenerative diseases of basal ganglia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -362,G24,(dystonia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -363,G25,(other extrapyramidal and movement disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -364,G30,(alzheimer's disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,4.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -365,G31,"(other degenerative diseases of nervous system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.2,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -366,G32,(other degenerative disorders of nervous system in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -367,G35,(multiple sclerosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -368,G36,(other acute disseminated demyelination),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -369,G37,(other demyelinating diseases of central nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -370,G40,(epilepsy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.5,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -371,G41,(status epilepticus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -372,G43,(migraine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -373,G44,(other headache syndromes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -374,G45,(transient cerebral ischaemic attacks and related syndromes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.2,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -375,G46,(vascular syndromes of brain in cerebrovascular diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -376,G47,(sleep disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -377,G50,(disorders of trigeminal nerve),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -378,G51,(facial nerve disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -379,G52,(disorders of other cranial nerves),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -380,G53,(cranial nerve disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -381,G54,(nerve root and plexus disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -382,G55,(nerve root and plexus compressions in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -383,G56,(mononeuropathies of upper limb),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -384,G57,(mononeuropathies of lower limb),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -385,G58,(other mononeuropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -386,G59,(mononeuropathy in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -387,G60,(hereditary and idiopathic neuropathy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -388,G61,(inflammatory polyneuropathy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -389,G62,(other polyneuropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -390,G63,(polyneuropathy in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -391,G64,(other disorders of peripheral nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -392,G70,(myasthenia gravis and other myoneural disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -393,G71,(primary disorders of muscles),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -394,G72,(other myopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -395,G73,(disorders of myoneural junction and muscle in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -396,G80,(infantile cerebral palsy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -397,G81,(hemiplegia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,4.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -398,G82,(paraplegia and tetraplegia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -399,G83,(other paralytic syndromes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -400,G90,(disorders of autonomic nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -401,G91,(hydrocephalus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -402,G92,(toxic encephalopathy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -403,G93,(other disorders of brain),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -404,G94,(other disorders of brain in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -405,G95,(other diseases of spinal cord),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -406,G96,(other disorders of central nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -407,G97,"(postprocedural disorders of nervous system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -408,G98,"(other disorders of nervous system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -409,G99,(other disorders of nervous system in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -410,H00,(hordeolum and chalazion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -411,H01,(other inflammation of eyelid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -412,H02,(other disorders of eyelid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -413,H03,(disorders of eyelid in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -414,H04,(disorders of lachrymal system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -415,H05,(disorders of orbit),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -416,H06,(disorders of lachrymal system and orbit in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -417,H10,(conjunctivitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -418,H11,(other disorders of conjunctiva),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -419,H13,(disorders of conjunctiva in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -420,H15,(disorders of sclera),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -421,H16,(keratitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -422,H17,(corneal scars and opacities),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -423,H18,(other disorders of cornea),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -424,H19,(disorders of sclera and cornea in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -425,H20,(iridocyclitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -426,H21,(other disorders of iris and ciliary body),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -427,H22,(disorders of iris and ciliary body in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -428,H25,(senile cataract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -429,H26,(other cataract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -430,H27,(other disorders of lens),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -431,H28,(cataract and other disorders of lens in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -432,H30,(chorioretinal inflammation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -433,H31,(other disorders of choroid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -434,H32,(chorioretinal disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -435,H33,(retinal detachments and breaks),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -436,H34,(retinal vascular occlusions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -437,H35,(other retinal disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -438,H36,(retinal disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -439,H40,(glaucoma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -440,H42,(glaucoma in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -441,H43,(disorders of vitreous body),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -442,H44,(disorders of globe),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -443,H45,(disorders of vitreous body and globe in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -444,H46,(optic neuritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -445,H47,(other disorders of optic [2nd] nerve and visual pathways),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -446,H48,(disorders of optic [2nd] nerve and visual pathways in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -447,H49,(paralytic strabismus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -448,H50,(other strabismus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -449,H51,(other disorders of binocular movement),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -450,H52,(disorders of refraction and accommodation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -451,H53,(visual disturbances),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -452,H54,(blindness and low vision),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.9,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -453,H55,(nystagmus and other irregular eye movements),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -454,H57,(other disorders of eye and adnexa),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -455,H58,(other disorders of eye and adnexa in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -456,H59,"(postprocedural disorders of eye and adnexa, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -457,H60,(otitis externa),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -458,H61,(other disorders of external ear),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -459,H62,(disorders of external ear in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -460,H65,(nonsuppurative otitis media),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -461,H66,(suppurative and unspecified otitis media),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -462,H67,(otitis media in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -463,H68,(eustachian salpingitis and obstruction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -464,H69,(other disorders of eustachian tube),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -465,H70,(mastoiditis and related conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -466,H71,(cholesteatoma of middle ear),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -467,H72,(perforation of tympanic membrane),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -468,H73,(other disorders of tympanic membrane),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -469,H74,(other disorders of middle ear and mastoid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -470,H75,(other disorders of middle ear and mastoid in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -471,H80,(otosclerosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -472,H81,(disorders of vestibular function),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -473,H82,(vertiginous syndromes in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -474,H83,(other diseases of inner ear),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -475,H90,(conductive and sensorineural hearing loss),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -476,H91,(other hearing loss),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.9,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -477,H92,(otalgia and effusion of ear),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -478,H93,"(other disorders of ear, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -479,H94,(other disorders of ear in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -480,H95,"(postprocedural disorders of ear and mastoid process, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -481,I00,(rheumatic fever without mention of heart involvement),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -482,I01,(rheumatic fever with heart involvement),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -483,I02,(rheumatic chorea),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -484,I05,(rheumatic mitral valve diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -485,I06,(rheumatic aortic valve diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -486,I07,(rheumatic tricuspid valve diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -487,I08,(multiple valve diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -488,I09,(other rheumatic heart diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -489,I10,(essential (primary) hypertension),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -490,I11,(hypertensive heart disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -491,I12,(hypertensive renal disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -492,I13,(hypertensive heart and renal disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -493,I15,(secondary hypertension),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -494,I20,(angina pectoris),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -495,I21,(acute myocardial infarction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -496,I22,(subsequent myocardial infarction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -497,I23,(certain current complications following acute myocardial infarction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -498,I24,(other acute ischaemic heart diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -499,I25,(chronic ischaemic heart disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -500,I26,(pulmonary embolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -501,I27,(other pulmonary heart diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -502,I28,(other diseases of pulmonary vessels),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -503,I30,(acute pericarditis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -504,I31,(other diseases of pericardium),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -505,I32,(pericarditis in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -506,I33,(acute and subacute endocarditis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -507,I34,(nonrheumatic mitral valve disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -508,I35,(nonrheumatic aortic valve disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -509,I36,(nonrheumatic tricuspid valve disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -510,I37,(pulmonary valve disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -511,I38,"(endocarditis, valve unspecified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -512,I39,(endocarditis and heart valve disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -513,I40,(acute myocarditis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -514,I41,(myocarditis in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -515,I42,(cardiomyopathy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -516,I43,(cardiomyopathy in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -517,I44,(atrioventricular and left bundle-branch block),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -518,I45,(other conduction disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -519,I46,(cardiac arrest),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -520,I47,(paroxysmal tachycardia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -521,I48,(atrial fibrillation and flutter),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -522,I49,(other cardiac arrhythmias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -523,I50,(heart failure),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -524,I51,(complications and ill-defined descriptions of heart disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -525,I52,(other heart disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -526,I60,(subarachnoid haemorrhage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -527,I61,(intracerebral haemorrhage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -528,I62,(other nontraumatic intracranial haemorrhage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -529,I63,(cerebral infarction),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.8,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -530,I64,"(stroke, not specified as haemorrhage or infarction)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -531,I65,"(occlusion and stenosis of precerebral arteries, not resulting in cerebral infarction)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -532,I66,"(occlusion and stenosis of cerebral arteries, not resulting in cerebral infarction)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -533,I67,(other cerebrovascular diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.6,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -534,I68,(cerebrovascular disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -535,I69,(sequelae of cerebrovascular disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,3.7,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -536,I70,(atherosclerosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -537,I71,(aortic aneurysm and dissection),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -538,I72,(other aneurysm),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -539,I73,(other peripheral vascular diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -540,I74,(arterial embolism and thrombosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -541,I77,(other disorders of arteries and arterioles),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -542,I78,(diseases of capillaries),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -543,I79,"(disorders of arteries, arterioles and capillaries in diseases classified elsewhere)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -544,I80,(phlebitis and thrombophlebitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -545,I81,(portal vein thrombosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -546,I82,(other venous embolism and thrombosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -547,I83,(varicose veins of lower extremities),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -548,I84,(haemorrhoids),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -549,I85,(oesophageal varices),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -550,I86,(varicose veins of other sites),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -551,I87,(other disorders of veins),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -552,I88,(nonspecific lymphadenitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -553,I89,(other non-infective disorders of lymphatic vessels and lymph nodes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -554,I95,(hypotension),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.6,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -555,I97,"(postprocedural disorders of circulatory system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -556,I98,(other disorders of circulatory system in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -557,I99,(other and unspecified disorders of circulatory system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -558,J00,(acute nasopharyngitis [common cold]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -559,J01,(acute sinusitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -560,J02,(acute pharyngitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -561,J03,(acute tonsillitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -562,J04,(acute laryngitis and tracheitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -563,J05,(acute obstructive laryngitis [croup] and epiglottitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -564,J06,(acute upper respiratory infections of multiple and unspecified sites),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -565,J09,(influenza due to certain identified influenza virus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -566,J10,(influenza due to identified influenza virus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -567,J11,"(influenza, virus not identified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -568,J12,"(viral pneumonia, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -569,J13,(pneumonia due to streptococcus pneumoniae),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -570,J14,(pneumonia due to haemophilus influenzae),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -571,J15,"(bacterial pneumonia, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -572,J16,"(pneumonia due to other infectious organisms, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -573,J17,(pneumonia in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -574,J18,"(pneumonia, organism unspecified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.1,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -575,J20,(acute bronchitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -576,J21,(acute bronchiolitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -577,J22,(unspecified acute lower respiratory infection),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.7,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -578,J30,(vasomotor and allergic rhinitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -579,J31,"(chronic rhinitis, nasopharyngitis and pharyngitis)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -580,J32,(chronic sinusitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -581,J33,(nasal polyp),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -582,J34,(other disorders of nose and nasal sinuses),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -583,J35,(chronic diseases of tonsils and adenoids),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -584,J36,(peritonsillar abscess),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -585,J37,(chronic laryngitis and laryngotracheitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -586,J38,"(diseases of vocal cords and larynx, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -587,J39,(other diseases of upper respiratory tract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -588,J40,"(bronchitis, not specified as acute or chronic)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -589,J41,(simple and mucopurulent chronic bronchitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -590,J42,(unspecified chronic bronchitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -591,J43,(emphysema),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -592,J44,(other chronic obstructive pulmonary disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -593,J45,(asthma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -594,J46,(status asthmaticus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -595,J47,(bronchiectasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -596,J60,(coalworker's pneumoconiosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -597,J61,(pneumoconiosis due to asbestos and other mineral fibres),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -598,J62,(pneumoconiosis due to dust containing silica),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -599,J63,(pneumoconiosis due to other inorganic dusts),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -600,J64,(unspecified pneumoconiosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -601,J66,(airway disease due to specific organic dust),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -602,J67,(hypersensitivity pneumonitis due to organic dust),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -603,J68,"(respiratory conditions due to inhalation of chemicals, gases, fumes and vapours)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -604,J69,(pneumonitis due to solids and liquids),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -605,J70,(respiratory conditions due to other external agents),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -606,J80,(adult respiratory distress syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -607,J81,(pulmonary oedema),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -608,J82,"(pulmonary eosinophilia, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -609,J84,(other interstitial pulmonary diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -610,J85,(abscess of lung and mediastinum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -611,J86,(pyothorax),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -612,J90,"(pleural effusion, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -613,J91,(pleural effusion in conditions classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -614,J92,(pleural plaque),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -615,J93,(pneumothorax),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -616,J94,(other pleural conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -617,J95,"(postprocedural respiratory disorders, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -618,J96,"(respiratory failure, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.5,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -619,J98,(other respiratory disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -620,J99,(respiratory disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -621,K00,(disorders of tooth development and eruption),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -622,K01,(embedded and impacted teeth),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -623,K02,(dental caries),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -624,K03,(other diseases of hard tissues of teeth),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -625,K04,(diseases of pulp and periapical tissues),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -626,K05,(gingivitis and periodontal diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -627,K06,(other disorders of gingiva and edentulous alveolar ridge),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -628,K07,(dentofacial anomalies [including malocclusion]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -629,K08,(other disorders of teeth and supporting structures),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -630,K09,"(cysts of oral region, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -631,K10,(other diseases of jaws),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -632,K11,(diseases of salivary glands),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -633,K12,(stomatitis and related lesions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -634,K13,(other diseases of lip and oral mucosa),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -635,K14,(diseases of tongue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -636,K20,(oesophagitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -637,K21,(gastro-oesophageal reflux disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -638,K22,(other diseases of oesophagus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -639,K23,(disorders of oesophagus in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -640,K25,(gastric ulcer),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -641,K26,(duodenal ulcer),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.6,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -642,K27,"(peptic ulcer, site unspecified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -643,K28,(gastrojejunal ulcer),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -644,K29,(gastritis and duodenitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -645,K30,(dyspepsia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -646,K31,(other diseases of stomach and duodenum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -647,K35,(acute appendicitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -648,K36,(other appendicitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -649,K37,(unspecified appendicitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -650,K38,(other diseases of appendix),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -651,K40,(inguinal hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -652,K41,(femoral hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -653,K42,(umbilical hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -654,K43,(ventral hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -655,K44,(diaphragmatic hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -656,K45,(other abdominal hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -657,K46,(unspecified abdominal hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -658,K50,(crohn's disease [regional enteritis]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -659,K51,(ulcerative colitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -660,K52,(other non-infective gastro-enteritis and colitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.3,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -661,K55,(vascular disorders of intestine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -662,K56,(paralytic ileus and intestinal obstruction without hernia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -663,K57,(diverticular disease of intestine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -664,K58,(irritable bowel syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -665,K59,(other functional intestinal disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.8,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -666,K60,(fissure and fistula of anal and rectal regions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -667,K61,(abscess of anal and rectal regions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -668,K62,(other diseases of anus and rectum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -669,K63,(other diseases of intestine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -670,K64,(haemorrhoids and perianal venous thrombosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -671,K65,(peritonitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -672,K66,(other disorders of peritoneum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -673,K67,(disorders of peritoneum in infectious diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -674,K70,(alcoholic liver disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -675,K71,(toxic liver disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -676,K72,"(hepatic failure, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -677,K73,"(chronic hepatitis, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -678,K74,(fibrosis and cirrhosis of liver),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -679,K75,(other inflammatory liver diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -680,K76,(other diseases of liver),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -681,K77,(liver disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -682,K80,(cholelithiasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -683,K81,(cholecystitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -684,K82,(other diseases of gallbladder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -685,K83,(other diseases of biliary tract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -686,K85,(acute pancreatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -687,K86,(other diseases of pancreas),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -688,K87,"(disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -689,K90,(intestinal malabsorption),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -690,K91,"(postprocedural disorders of digestive system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -691,K92,(other diseases of digestive system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.8,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -692,K93,(disorders of other digestive organs in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -693,L00,(staphylococcal scalded skin syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -694,L01,(impetigo),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -695,L02,"(cutaneous abscess, furuncle and carbuncle)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -696,L03,(cellulitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -697,L04,(acute lymphadenitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -698,L05,(pilonidal cyst),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -699,L08,(other local infections of skin and subcutaneous tissue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -700,L10,(pemphigus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -701,L11,(other acantholytic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -702,L12,(pemphigoid),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -703,L13,(other bullous disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -704,L14,(bullous disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -705,L20,(atopic dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -706,L21,(seborrhoeic dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -707,L22,(diaper [napkin] dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -708,L23,(allergic contact dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -709,L24,(irritant contact dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -710,L25,(unspecified contact dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -711,L26,(exfoliative dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -712,L27,(dermatitis due to substances taken internally),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -713,L28,(lichen simplex chronicus and prurigo),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -714,L29,(pruritus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -715,L30,(other dermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -716,L40,(psoriasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -717,L41,(parapsoriasis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -718,L42,(pityriasis rosea),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -719,L43,(lichen planus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -720,L44,(other papulosquamous disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -721,L50,(urticaria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -722,L51,(erythema multiforme),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -723,L52,(erythema nodosum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -724,L53,(other erythematous conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -725,L54,(erythema in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -726,L55,(sunburn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -727,L56,(other acute skin changes due to ultraviolet radiation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -728,L57,(skin changes due to chronic exposure to nonionising radiation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -729,L58,(radiodermatitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -730,L59,(other disorders of skin and subcutaneous tissue related to radiation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -731,L60,(nail disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -732,L62,(nail disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -733,L63,(alopecia areata),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -734,L64,(androgenic alopecia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -735,L65,(other nonscarring hair loss),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -736,L66,(cicatricial alopecia [scarring hair loss]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -737,L67,(hair colour and hair shaft abnormalities),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -738,L68,(hypertrichosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -739,L70,(acne),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -740,L71,(rosacea),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -741,L72,(follicular cysts of skin and subcutaneous tissue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -742,L73,(other follicular disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -743,L74,(eccrine sweat disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -744,L75,(apocrine sweat disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -745,L80,(vitiligo),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -746,L81,(other disorders of pigmentation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -747,L82,(seborrhoeic keratosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -748,L83,(acanthosis nigricans),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -749,L84,(corns and callosities),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -750,L85,(other epidermal thickening),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -751,L86,(keratoderma in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -752,L87,(transepidermal elimination disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -753,L88,(pyoderma gangrenosum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -754,L89,(decubitus ulcer),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.7,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -755,L90,(atrophic disorders of skin),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -756,L91,(hypertrophic disorders of skin),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -757,L92,(granulomatous disorders of skin and subcutaneous tissue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -758,L93,(lupus erythematosus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -759,L94,(other localised connective tissue disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -760,L95,"(vasculitis limited to skin, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -761,L97,"(ulcer of lower limb, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.6,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -762,L98,"(other disorders of skin and subcutaneous tissue, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -763,L99,(other disorders of skin and subcutaneous tissue in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -764,M00,(pyogenic arthritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -765,M01,(direct infections of joint in infectious and parasitic diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -766,M02,(reactive arthropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -767,M03,(postinfective and reactive arthropathies in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -768,M05,(seropositive rheumatoid arthritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -769,M06,(other rheumatoid arthritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -770,M07,(psoriatic and enteropathic arthropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -771,M08,(juvenile arthritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -772,M09,(juvenile arthritis in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -773,M10,(gout),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -774,M11,(other crystal arthropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -775,M12,(other specific arthropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -776,M13,(other arthritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -777,M14,(arthropathies in other diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -778,M15,(polyarthrosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -779,M16,(coxarthrosis [arthrosis of hip]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -780,M17,(gonarthrosis [arthrosis of knee]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -781,M18,(arthrosis of first carpometacarpal joint),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -782,M19,(other arthrosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.5,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -783,M20,(acquired deformities of fingers and toes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -784,M21,(other acquired deformities of limbs),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -785,M22,(disorders of patella),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -786,M23,(internal derangement of knee),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -787,M24,(other specific joint derangements),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -788,M25,"(other joint disorders, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,2.3,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -789,M30,(polyarteritis nodosa and related conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -790,M31,(other necrotising vasculopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -791,M32,(systemic lupus erythematosus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -792,M33,(dermatopolymyositis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -793,M34,(systemic sclerosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -794,M35,(other systemic involvement of connective tissue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -795,M36,(systemic disorders of connective tissue in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -796,M40,(kyphosis and lordosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -797,M41,(scoliosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.9,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -798,M42,(spinal osteochondrosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -799,M43,(other deforming dorsopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -800,M45,(ankylosing spondylitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -801,M46,(other inflammatory spondylopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -802,M47,(spondylosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -803,M48,(other spondylopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.5,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -804,M49,(spondylopathies in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -805,M50,(cervical disk disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -806,M51,(other intervertebral disk disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -807,M53,"(other dorsopathies, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -808,M54,(dorsalgia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -809,M60,(myositis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -810,M61,(calcification and ossification of muscle),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -811,M62,(other disorders of muscle),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -812,M63,(disorders of muscle in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -813,M65,(synovitis and tenosynovitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -814,M66,(spontaneous rupture of synovium and tendon),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -815,M67,(other disorders of synovium and tendon),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -816,M68,(disorders of synovium and tendon in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -817,M70,"(soft tissue disorders related to use, overuse and pressure)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -818,M71,(other bursopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -819,M72,(fibroblastic disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -820,M73,(soft tissue disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -821,M75,(shoulder lesions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -822,M76,"(enthesopathies of lower limb, excluding foot)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -823,M77,(other enthesopathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -824,M79,"(other soft tissue disorders, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.1,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -825,M80,(osteoporosis with pathological fracture),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.8,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -826,M81,(osteoporosis without pathological fracture),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -827,M82,(osteoporosis in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -828,M83,(adult osteomalacia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -829,M84,(disorders of continuity of bone),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -830,M85,(other disorders of bone density and structure),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -831,M86,(osteomyelitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -832,M87,(osteonecrosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -833,M88,(paget's disease of bone [osteitis deformans]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -834,M89,(other disorders of bone),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -835,M90,(osteopathies in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -836,M91,(juvenile osteochondrosis of hip and pelvis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -837,M92,(other juvenile osteochondrosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -838,M93,(other osteochondropathies),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -839,M94,(other disorders of cartilage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -840,M95,(other acquired deformities of musculoskeletal system and connective tissue),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -841,M96,"(postprocedural musculoskeletal disorders, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -842,M99,"(biomechanical lesions, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -843,N00,(acute nephritic syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -844,N01,(rapidly progressive nephritic syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -845,N02,(recurrent and persistent haematuria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -846,N03,(chronic nephritic syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -847,N04,(nephrotic syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -848,N05,(unspecified nephritic syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -849,N06,(isolated proteinuria with specified morphological lesion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -850,N07,"(hereditary nephropathy, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -851,N08,(glomerular disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -852,N10,(acute tubulo-interstitial nephritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -853,N11,(chronic tubulo-interstitial nephritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -854,N12,"(tubulo-interstitial nephritis, not specified as acute or chronic)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -855,N13,(obstructive and reflux uropathy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -856,N14,(drug- and heavy-metal-induced tubulo-interstitial and tubular conditions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -857,N15,(other renal tubulo-interstitial diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -858,N16,(renal tubulo-interstitial disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -859,N17,(acute renal failure),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.8,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -860,N18,(chronic renal failure),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.4,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -861,N19,(unspecified renal failure),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.6,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -862,N20,(calculus of kidney and ureter),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.7,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -863,N21,(calculus of lower urinary tract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -864,N22,(calculus of urinary tract in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -865,N23,(unspecified renal colic),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -866,N25,(disorders resulting from impaired renal tubular function),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -867,N26,(unspecified contracted kidney),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -868,N27,(small kidney of unknown cause),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -869,N28,"(other disorders of kidney and ureter, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,1.3,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -870,N29,(other disorders of kidney and ureter in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -871,N30,(cystitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -872,N31,"(neuromuscular dysfunction of bladder, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -873,N32,(other disorders of bladder),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -874,N33,(bladder disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -875,N34,(urethritis and urethral syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -876,N35,(urethral stricture),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -877,N36,(other disorders of urethra),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -878,N37,(urethral disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -879,N39,(other disorders of urinary system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,3.2,Gilbert et al. Lancet 2018 supplementary appendix Table A2,exact_three_character_icd10 -880,N40,(hyperplasia of prostate),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -881,N41,(inflammatory diseases of prostate),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -882,N42,(other disorders of prostate),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -883,N43,(hydrocele and spermatocele),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -884,N44,(torsion of testis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -885,N45,(orchitis and epididymitis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -886,N46,(male infertility),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -887,N47,"(redundant prepuce, phimosis and paraphimosis)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -888,N48,(other disorders of penis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -889,N49,"(inflammatory disorders of male genital organs, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -890,N50,(other disorders of male genital organs),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -891,N51,(disorders of male genital organs in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -892,N60,(benign mammary dysplasia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -893,N61,(inflammatory disorders of breast),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -894,N62,(hypertrophy of breast),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -895,N63,(unspecified lump in breast),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -896,N64,(other disorders of breast),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -897,N70,(salpingitis and oophoritis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -898,N71,"(inflammatory disease of uterus, except cervix)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -899,N72,(inflammatory disease of cervix uteri),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -900,N73,(other female pelvic inflammatory diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -901,N74,(female pelvic inflammatory disorders in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -902,N75,(diseases of bartholin's gland),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -903,N76,(other inflammation of vagina and vulva),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -904,N77,(vulvovaginal ulceration and inflammation in diseases classified elsewhere),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -905,N80,(endometriosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -906,N81,(female genital prolapse),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -907,N82,(fistulae involving female genital tract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -908,N83,"(noninflammatory disorders of ovary, fallopian tube and broad ligament)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -909,N84,(polyp of female genital tract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -910,N85,"(other noninflammatory disorders of uterus, except cervix)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -911,N86,(erosion and ectropion of cervix uteri),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -912,N87,(dysplasia of cervix uteri),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -913,N88,(other noninflammatory disorders of cervix uteri),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -914,N89,(other noninflammatory disorders of vagina),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -915,N90,(other noninflammatory disorders of vulva and perineum),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -916,N91,"(absent, scanty and rare menstruation)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -917,N92,"(excessive, frequent and irregular menstruation)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -918,N93,(other abnormal uterine and vaginal bleeding),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -919,N94,(pain and other conditions associated with female genital organs and menstrual cycle),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -920,N95,(menopausal and other perimenopausal disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -921,N96,(habitual aborter),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -922,N97,(female infertility),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -923,N98,(complications associated with artificial fertilisation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -924,N99,"(postprocedural disorders of genito-urinary system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -925,O00,(ectopic pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -926,O01,(hydatidiform mole),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -927,O02,(other abnormal products of conception),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -928,O03,(spontaneous abortion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -929,O04,(medical abortion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -930,O05,(other abortion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -931,O06,(unspecified abortion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -932,O07,(failed attempted abortion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -933,O08,(complications following abortion and ectopic and molar pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -934,O10,"(pre-existing hypertension complicating pregnancy, childbirth and the puerperium)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -935,O11,(pre-existing hypertensive disorder with superimposed proteinuria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -936,O12,(gestational [pregnancy-induced] oedema and proteinuria without hypertension),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -937,O13,(gestational [pregnancy-induced] hypertension without significant proteinuria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -938,O14,(gestational [pregnancy-induced] hypertension with significant proteinuria),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -939,O15,(eclampsia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -940,O16,(unspecified maternal hypertension),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -941,O20,(haemorrhage in early pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -942,O21,(excessive vomiting in pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -943,O22,(venous complications in pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -944,O23,(infections of genito-urinary tract in pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -945,O24,(diabetes mellitus in pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -946,O25,(malnutrition in pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -947,O26,(maternal care for other conditions predominantly related to pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -948,O28,(abnormal findings on antenatal screening of mother),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -949,O29,(complications of anaesthesia during pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -950,O30,(multiple gestation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -951,O31,(complications specific to multiple gestation),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -952,O32,(maternal care for known or suspected malpresentation of foetus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -953,O33,(maternal care for known or suspected disproportion),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -954,O34,(maternal care for known or suspected abnormality of pelvic organs),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -955,O35,(maternal care for known or suspected foetal abnormality and damage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -956,O36,(maternal care for other known or suspected foetal problems),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -957,O40,(polyhydramnios),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -958,O41,(other disorders of amniotic fluid and membranes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -959,O42,(premature rupture of membranes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -960,O43,(placental disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -961,O44,(placenta praevia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -962,O45,(premature separation of placenta [abruptio placentae]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -963,O46,"(antepartum haemorrhage, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -964,O47,(false labour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -965,O48,(prolonged pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -966,O60,(preterm delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -967,O61,(failed induction of labour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -968,O62,(abnormalities of forces of labour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -969,O63,(long labour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -970,O64,(obstructed labour due to malposition and malpresentation of foetus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -971,O65,(obstructed labour due to maternal pelvic abnormality),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -972,O66,(other obstructed labour),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -973,O67,"(labour and delivery complicated by intrapartum haemorrhage, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -974,O68,(labour and delivery complicated by foetal stress [distress]),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -975,O69,(labour and delivery complicated by umbilical cord complications),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -976,O70,(perineal laceration during delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -977,O71,(other obstetric trauma),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -978,O72,(postpartum haemorrhage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -979,O73,"(retained placenta and membranes, without haemorrhage)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -980,O74,(complications of anaesthesia during labour and delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -981,O75,"(other complications of labour and delivery, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -982,O80,(single spontaneous delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -983,O81,(single delivery by forceps and vacuum extractor),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -984,O82,(single delivery by caesarean section),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -985,O83,(other assisted single delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -986,O84,(multiple delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -987,O85,(puerperal sepsis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -988,O86,(other puerperal infections),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -989,O87,(venous complications in the puerperium),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -990,O88,(obstetric embolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -991,O89,(complications of anaesthesia during the puerperium),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -992,O90,"(complications of the puerperium, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -993,O91,(infections of breast associated with childbirth),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -994,O92,(other disorders of breast and lactation associated with childbirth),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -995,O94,"(sequelae of complication of pregnancy, childbirth and the puerperium)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -996,O96,(death from any obstetric cause occurring more than 42 days but less than one year after delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -997,O98,"(maternal infectious and parasitic diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -998,O99,"(other maternal diseases classifiable elsewhere but complicating pregnancy, childbirth and the puerperium)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -999,P00,(foetus and newborn affected by maternal conditions that may be unrelated to present pregnancy),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1000,P02,"(foetus and newborn affected by complications of placenta, cord and membranes)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1001,P03,(foetus and newborn affected by other complications of labour and delivery),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1002,P04,(foetus and newborn affected by noxious influences transmitted via placenta or breast milk),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1003,P05,(slow foetal growth and foetal malnutrition),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1004,P07,"(disorders related to short gestation and low birth weight, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1005,P08,(disorders related to long gestation and high birth weight),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1006,P10,(intracranial laceration and haemorrhage due to birth injury),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1007,P11,(other birth injuries to central nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1008,P12,(birth injury to scalp),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1009,P13,(birth injury to skeleton),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1010,P14,(birth injury to peripheral nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1011,P15,(other birth injuries),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1012,P20,(intra-uterine hypoxia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1013,P21,(birth asphyxia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1014,P22,(respiratory distress of newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1015,P23,(congenital pneumonia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1016,P24,(neonatal aspiration syndromes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1017,P25,(interstitial emphysema and related conditions originating in the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1018,P26,(pulmonary haemorrhage originating in the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1019,P27,(chronic respiratory disease originating in the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1020,P28,(other respiratory conditions originating in the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1021,P29,(cardiovascular disorders originating in the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1022,P35,(congenital viral diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1023,P36,(bacterial sepsis of newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1024,P37,(other congenital infectious and parasitic diseases),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1025,P38,(omphalitis of newborn with or without mild haemorrhage),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1026,P39,(other infections specific to the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1027,P50,(foetal blood loss),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1028,P51,(umbilical haemorrhage of newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1029,P52,(intracranial nontraumatic haemorrhage of foetus and newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1030,P53,(haemorrhagic disease of foetus and newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1031,P54,(other neonatal haemorrhages),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1032,P55,(haemolytic disease of foetus and newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1033,P58,(neonatal jaundice due to other excessive haemolysis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1034,P59,(neonatal jaundice from other and unspecified causes),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1035,P61,(other perinatal haematological disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1036,P70,(transitory disorders of carbohydrate metabolism specific to foetus and newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1037,P71,(transitory neonatal disorders of calcium and magnesium metabolism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1038,P78,(other perinatal digestive system disorders),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1039,P83,(other conditions of integument specific to foetus and newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1040,P91,(other disturbances of cerebral status of newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1041,P92,(feeding problems of newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1042,P94,(disorders of muscle tone of newborn),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1043,P95,(foetal death of unspecified cause),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1044,P96,(other conditions originating in the perinatal period),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1045,Q00,(anencephaly and similar malformations),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1046,Q01,(encephalocele),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1047,Q02,(microcephaly),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1048,Q03,(congenital hydrocephalus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1049,Q04,(other congenital malformations of brain),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1050,Q05,(spina bifida),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1051,Q06,(other congenital malformations of spinal cord),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1052,Q07,(other congenital malformations of nervous system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1053,Q10,"(congenital malformations of eyelid, lachrymal apparatus and orbit)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1054,Q11,"(anophthalmos, microphthalmos and macrophthalmos)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1055,Q12,(congenital lens malformations),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1056,Q13,(congenital malformations of anterior segment of eye),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1057,Q14,(congenital malformations of posterior segment of eye),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1058,Q15,(other congenital malformations of eye),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1059,Q16,(congenital malformations of ear causing impairment of hearing),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1060,Q17,(other congenital malformations of ear),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1061,Q18,(other congenital malformations of face and neck),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1062,Q20,(congenital malformations of cardiac chambers and connexions),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1063,Q21,(congenital malformations of cardiac septa),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1064,Q22,(congenital malformations of pulmonary and tricuspid valves),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1065,Q23,(congenital malformations of aortic and mitral valves),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1066,Q24,(other congenital malformations of heart),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1067,Q25,(congenital malformations of great arteries),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1068,Q26,(congenital malformations of great veins),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1069,Q27,(other congenital malformations of peripheral vascular system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1070,Q28,(other congenital malformations of circulatory system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1071,Q30,(congenital malformations of nose),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1072,Q31,(congenital malformations of larynx),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1073,Q32,(congenital malformations of trachea and bronchus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1074,Q33,(congenital malformations of lung),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1075,Q34,(other congenital malformations of respiratory system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1076,Q35,(cleft palate),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1077,Q36,(cleft lip),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1078,Q37,(cleft palate with cleft lip),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1079,Q38,"(other congenital malformations of tongue, mouth and pharynx)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1080,Q39,(congenital malformations of oesophagus),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1081,Q40,(other congenital malformations of upper alimentary tract),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1082,Q41,"(congenital absence, atresia and stenosis of small intestine)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1083,Q42,"(congenital absence, atresia and stenosis of large intestine)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1084,Q43,(other congenital malformations of intestine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1085,Q44,"(congenital malformations of gallbladder, bile ducts and liver)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1086,Q45,(other congenital malformations of digestive system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1087,Q50,"(congenital malformations of ovaries, fallopian tubes and broad ligaments)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1088,Q51,(congenital malformations of uterus and cervix),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1089,Q52,(other congenital malformations of female genitalia),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1090,Q53,(undescended testicle),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1091,Q54,(hypospadias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1092,Q55,(other congenital malformations of male genital organs),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1093,Q56,(indeterminate sex and pseudohermaphroditism),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1094,Q60,(renal agenesis and other reduction defects of kidney),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1095,Q61,(cystic kidney disease),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1096,Q62,(congenital obstructive defects of renal pelvis and congenital malformations of ureter),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1097,Q63,(other congenital malformations of kidney),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1098,Q64,(other congenital malformations of urinary system),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1099,Q65,(congenital deformities of hip),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1100,Q66,(congenital deformities of feet),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1101,Q67,"(congenital musculoskeletal deformities of head, face, spine and chest)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1102,Q68,(other congenital musculoskeletal deformities),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1103,Q69,(polydactyly),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1104,Q70,(syndactyly),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1105,Q71,(reduction defects of upper limb),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1106,Q72,(reduction defects of lower limb),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1107,Q73,(reduction defects of unspecified limb),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1108,Q74,(other congenital malformations of limb(s)),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1109,Q75,(other congenital malformations of skull and face bones),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1110,Q76,(congenital malformations of spine and bony thorax),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1111,Q77,(osteochondrodysplasia with defects of growth of tubular bones and spine),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1112,Q78,(other osteochondrodysplasias),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1113,Q79,"(congenital malformations of musculoskeletal system, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1114,Q80,(congenital ichthyosis),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1115,Q81,(epidermolysis bullosa),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1116,Q82,(other congenital malformations of skin),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1117,Q83,(congenital malformations of breast),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1118,Q84,(other congenital malformations of integument),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1119,Q85,"(phakomatoses, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1120,Q86,"(congenital malformation syndromes due to known exogenous causes, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1121,Q87,(other specified congenital malformation syndromes affecting multiple systems),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1122,Q89,"(other congenital malformations, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1123,Q90,(down's syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1124,Q91,(edwards' syndrome and patau's syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1125,Q92,"(other trisomies and partial trisomies of the autosomes, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1126,Q93,"(monosomies and deletions from the autosomes, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1127,Q95,"(balanced rearrangements and structural markers, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1128,Q96,(turner's syndrome),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1129,Q97,"(other sex chromosome abnormalities, female phenotype, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1130,Q98,"(other sex chromosome abnormalities, male phenotype, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1131,Q99,"(other chromosome abnormalities, not elsewhere classified)",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1132,CXX,Unknown Cancer,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1133,C00,Malignant neoplasm of lip,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1134,C01,Malignant neoplasm of base of tongue,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1135,C02,Malignant neoplasm of other and unspecified parts of tongue,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1136,C03,Malignant neoplasm of gum,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1137,C04,Malignant neoplasm of floor of mouth,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1138,C05,Malignant neoplasm of palate,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1139,C06,Malignant neoplasm of other and unspecified parts of mouth,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1140,C07,Malignant neoplasm of parotid gland,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1141,C08,Malignant neoplasm of other and unspecified major salivary glands,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1142,C09,Malignant neoplasm of tonsil,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1143,C10,Malignant neoplasm of oropharynx,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1144,C11,Malignant neoplasm of nasopharynx,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1145,C12,Malignant neoplasm of pyriform sinus,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1146,C13,Malignant neoplasm of hypopharynx,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1147,C14,"Malignant neoplasm of other and ill-defined sites in the lip, oral cavity and pharynx",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1148,C15,Malignant neoplasm of oesophagus,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1149,C16,Malignant neoplasm of stomach,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1150,C17,Malignant neoplasm of small intestine,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1151,C18,Malignant neoplasm of colon,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1152,C19,Malignant neoplasm of rectosigmoid junction,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1153,C20,Malignant neoplasm of rectum,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1154,C21,Malignant neoplasm of anus and anal canal,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1155,C22,Malignant neoplasm of liver and intrahepatic bile ducts,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1156,C23,Malignant neoplasm of gallbladder,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1157,C24,Malignant neoplasm of other and unspecified parts of biliary tract,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1158,C25,Malignant neoplasm of pancreas,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1159,C26,Malignant neoplasm of other and ill-defined digestive organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1160,C30,Malignant neoplasm of nasal cavity and middle ear,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1161,C31,Malignant neoplasm of accessory sinuses,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1162,C32,Malignant neoplasm of larynx,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1163,C33,Malignant neoplasm of trachea,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1164,C34,Malignant neoplasm of bronchus and lung,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1165,C37,Malignant neoplasm of thymus,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1166,C38,"Malignant neoplasm of heart, mediastinum and pleura",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1167,C39,Malignant neoplasm of other and ill-defined sites in the respiratory system and intrathoracic organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1168,C40,Malignant neoplasm of bone and articular cartilage of limbs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1169,C41,Malignant neoplasm of bone and articular cartilage of other and unspecified sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1170,C42,hematopoietic and reticuloendothelial systems (ICD-O-3 specific),hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1171,C43,Malignant melanoma of skin,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1172,C44,Other malignant neoplasms of skin,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1173,C45,Mesothelioma,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1174,C46,Kaposi's sarcoma,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1175,C47,Malignant neoplasm of peripheral nerves and autonomic nervous system,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1176,C48,Malignant neoplasm of retroperitoneum and peritoneum,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1177,C49,Malignant neoplasm of other connective and soft tissue,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1178,C50,Malignant neoplasm of breast,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1179,C51,Malignant neoplasm of vulva,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1180,C52,Malignant neoplasm of vagina,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1181,C53,Malignant neoplasm of cervix uteri,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1182,C54,Malignant neoplasm of corpus uteri,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1183,C55,"Malignant neoplasm of uterus, part unspecified",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1184,C56,Malignant neoplasm of ovary,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1185,C57,Malignant neoplasm of other and unspecified female genital organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1186,C58,Malignant neoplasm of placenta,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1187,C60,Malignant neoplasm of penis,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1188,C61,Malignant neoplasm of prostate,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1189,C62,Malignant neoplasm of testis,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1190,C63,Malignant neoplasm of other and unspecified male genital organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1191,C64,"Malignant neoplasm of kidney, except renal pelvis",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1192,C65,Malignant neoplasm of renal pelvis,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1193,C66,Malignant neoplasm of ureter,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1194,C67,Malignant neoplasm of bladder,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1195,C68,Malignant neoplasm of other and unspecified urinary organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1196,C69,Malignant neoplasm of eye and adnexa,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1197,C70,Malignant neoplasm of meninges,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1198,C71,Malignant neoplasm of brain,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1199,C72,"Malignant neoplasm of spinal cord, cranial nerves and other parts of central nervous system",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1200,C73,Malignant neoplasm of thyroid gland,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1201,C74,Malignant neoplasm of adrenal gland,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1202,C75,Malignant neoplasm of other endocrine glands and related structures,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1203,C76,Malignant neoplasm of other and ill-defined sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1204,C77,Secondary and unspecified malignant neoplasm of lymph nodes,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1205,C78,Secondary malignant neoplasm of respiratory and digestive organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1206,C79,Secondary malignant neoplasm of other sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1207,C80,Malignant neoplasm without specification of site,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1208,C81,Hodgkin's disease,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1209,C82,Follicular [nodular] non-Hodgkin's lymphoma,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1210,C83,Diffuse non-Hodgkin's lymphoma,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1211,C84,Peripheral and cutaneous T-cell lymphomas,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1212,C85,Other and unspecified types of non-Hodgkin's lymphoma,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1213,C86,Other specified types of T/NK-cell lymphoma,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1214,C88,Malignant immunoproliferative diseases,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1215,C90,Multiple myeloma and malignant plasma cell neoplasms,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1216,C91,Lymphoid leukaemia,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1217,C92,Myeloid leukaemia,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1218,C93,Monocytic leukaemia,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1219,C94,Other leukaemias of specified cell type,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1220,C95,Leukaemia of unspecified cell type,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1221,C96,"Other and unspecified malignant neoplasms of lymphoid, haematopoietic and related tissue",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1222,C97,Malignant neoplasms of independent (primary) multiple sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1223,D00,"Carcinoma in situ of oral cavity, oesophagus and stomach",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1224,D01,Carcinoma in situ of other and unspecified digestive organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1225,D02,Carcinoma in situ of middle ear and respiratory system,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1226,D03,Melanoma in situ,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1227,D04,Carcinoma in situ of skin,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1228,D05,Carcinoma in situ of breast,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1229,D06,Carcinoma in situ of cervix uteri,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1230,D07,Carcinoma in situ of other and unspecified genital organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1231,D09,Carcinoma in situ of other and unspecified sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1232,D10,Benign neoplasm of mouth and pharynx,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1233,D11,Benign neoplasm of major salivary glands,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1234,D12,"Benign neoplasm of colon, rectum, anus and anal canal",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1235,D13,Benign neoplasm of other and ill-defined parts of digestive system,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1236,D15,Benign neoplasm of other and unspecified intrathoracic organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1237,D16,Benign neoplasm of bone and articular cartilage,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1238,D18,"Haemangioma and lymphangioma, any site",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1239,D27,Benign neoplasm of ovary,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1240,D30,Benign neoplasm of urinary organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1241,D32,Benign neoplasm of meninges,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1242,D33,Benign neoplasm of brain and other parts of central nervous system,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1243,D34,Benign neoplasm of thyroid gland,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1244,D35,Benign neoplasm of other and unspecified endocrine glands,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1245,D36,Benign neoplasm of other and unspecified sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1246,D37,Neoplasm of uncertain or unknown behaviour of oral cavity and digestive organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1247,D38,Neoplasm of uncertain or unknown behaviour of middle ear and respiratory and intrathoracic organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1248,D39,Neoplasm of uncertain or unknown behaviour of female genital organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1249,D40,Neoplasm of uncertain or unknown behaviour of male genital organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1250,D41,Neoplasm of uncertain or unknown behaviour of urinary organs,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1251,D42,Neoplasm of uncertain or unknown behaviour of meninges,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1252,D43,Neoplasm of uncertain or unknown behaviour of brain and central nervous system,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1253,D44,Neoplasm of uncertain or unknown behaviour of endocrine glands,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1254,D45,Polycythaemia vera,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1255,D46,Myelodysplastic syndromes,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1256,D47,"Other neoplasms of uncertain or unknown behaviour of lymphoid, haematopoietic and related tissue",hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1257,D48,Neoplasm of uncertain or unknown behaviour of other and unspecified sites,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs -1258,DEATH,,hfrs_weighted_disease_expression,DeepHealth HFRS-weighted disease expression,UK-HFRS,0.0,Gilbert et al. Lancet 2018 supplementary appendix Table A2,not_in_hfrs diff --git a/uk_hfrs_missing_label_codes.csv b/uk_hfrs_missing_label_codes.csv deleted file mode 100644 index 3d176ee..0000000 --- a/uk_hfrs_missing_label_codes.csv +++ /dev/null @@ -1,53 +0,0 @@ -hfrs_source_code,hfrs_weight,missing_reason,hfrs_source -R00,0.7,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R02,1.0,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R11,0.3,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R13,0.8,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R26,2.6,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R29,3.6,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R31,3.0,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R32,1.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R33,1.3,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R40,2.5,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R41,2.7,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R44,1.6,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R45,1.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R47,1.0,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R50,0.1,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R54,2.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R55,1.8,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R56,2.6,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R63,0.9,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R69,1.3,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R79,0.6,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -R94,1.4,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S00,3.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S01,1.1,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S06,2.4,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S09,1.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S22,1.8,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S32,1.4,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S42,2.3,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S51,0.5,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S72,1.4,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -S80,2.0,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -T83,2.4,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -U80,0.8,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -W01,0.9,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -W06,1.1,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -W10,0.9,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -W18,2.1,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -W19,3.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -X59,1.5,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Y84,0.7,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Y95,1.2,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z22,1.7,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z50,2.1,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z60,1.8,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z73,0.6,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z74,1.1,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z75,2.0,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z87,1.5,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z91,0.5,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z93,1.0,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2 -Z99,0.8,not_present_in_labels_csv,Gilbert et al. Lancet 2018 supplementary appendix Table A2