You are viewing a javascript disabled version of the site. Please enable Javascript for this site to function properly.
Go to headerGo to navigationGo to searchGo to contentsGo to footer
In content section. Select this link to jump to navigation

Semantic Harmonization of Alzheimer’s Disease Datasets Using AD-Mapper

Abstract

Background:

Despite numerous past endeavors for the semantic harmonization of Alzheimer’s disease (AD) cohort studies, an automatic tool has yet to be developed.

Objective:

As cohort studies form the basis of data-driven analysis, harmonizing them is crucial for cross-cohort analysis. We aimed to accelerate this task by constructing an automatic harmonization tool.

Methods:

We created a common data model (CDM) through cross-mapping data from 20 cohorts, three CDMs, and ontology terms, which was then used to fine-tune a BioBERT model. Finally, we evaluated the model using three previously unseen cohorts and compared its performance to a string-matching baseline model.

Results:

Here, we present our AD-Mapper interface for automatic harmonization of AD cohort studies, which outperformed a string-matching baseline on previously unseen cohort studies. We showcase our CDM comprising 1218 unique variables.

Conclusion:

AD-Mapper leverages semantic similarities in naming conventions across cohorts to improve mapping performance.

INTRODUCTION

In Alzheimer’s disease (AD) research, numerous cohort datasets serve as the foundation for data-driven investigations (e.g., based on machine learning (ML)). These datasets are often customized to address specific research questions and, therefore, focus on specific biomarkers and measurements that are essential for the research [1]. Such collected measurements are usually stored in different formats and using arbitrary naming systems. These inconsistent variable naming conventions and metadata across cohorts impede interoperability and make cross-cohort research time-consuming [2]. Despite the growing number of collected AD cohort datasets, harmonizing and utilizing multiple cohorts for disease investigation remains challenging due to these variable naming differences. As a result, the majority of research is practically limited to single cohorts. However, numerous reports indicate that conclusions drawn from AD data were constrained to the cohorts used and may not necessarily be generalizable [3, 4]. Therefore, single-cohort studies benefit from validation using independent datasets [5]. To address this and encourage cross-cohort investigations, it is vital to identify a common ground for AD data harmonization [6], ideally, using an automated tool.

Motivated by these matters, several attempts have been made to harmonize cohort studies by generating data catalogs, common data models (CDMs), and data stewardship tools (DSTs). Notably, the Observational Medical Outcomes Partnership (OMOP) has tackled data harmonization challenges across various disease research domains [7]. In addition to established efforts such as OMOP, tranSMART stands out as a significant initiative for aggregating clinical trial data. Leveraging the i2b2 CDM, tranSMART offers a structured approach to organizing clinical and biological data, facilitating data integration and analysis across diverse sources [8]. Recently, Salimi et al. (2022) demonstrated the differences that exist concerning over 1000 collected measurements and the naming convention across 20 major AD cohort studies through manual curation. They harmonized the cohorts’ variables against normalized variable names in addition to ontology terms. Their endeavor established the foundation for implementing a harmonized AD landscape, aiding researchers in cohort data selection and ensuring data interoperability [2]. Similarly, Bauermeister et al. (2023) proposed the C-Surv data model, covering the harmonization of 124 variables across four distinct cohorts [9]. Alternatively, other attempts were made to establish a data catalog and patient/variable outcome. For instance, the ROADMAP data cube and the EMIF data catalog projects illustrate the data availability among multiple cohort studies [10, 11]. While both of these projects included many cohorts and modalities, the reported information was mainly gathered through the data owners and the corresponding metadata. Such a data catalog did not address the available variables on a granular level and the variable harmonization aspect across cohort studies. Another study by Wegner et al. (2022) established a semi-automatic DST using a string-matching technique for the harmonization of clinical datasets and applied it in the field of dementia [12]. However, despite previous efforts, there is currently no model or tool enabling fully automatic harmonization in the AD field. Consequently, data curation/harmonization has predominantly remained a manual task.

One promising direction to address the aforementioned issue is the automation of manual mappings using natural language processing (NLP). In recent years, approaches such as the Bidirectional Encoder Representations from Transformers (BERT) model [13] and its biomedical equivalent, BioBERT [14], have greatly improved the ability of language models to correctly represent a word or phrase using its surrounding context. As a result, these models offer more flexibility for mapping purposes compared to previous methods based on string matching. Further, to account for domain shifts, such pre-trained language models (PLMs) can be fine-tuned to a wide range of tasks using task-specific datasets [15]. Nonetheless, to the best of our knowledge, no approach has leveraged pre-trained biomedical language models for variable harmonization between AD cohort datasets yet.

Here, we implemented AD-Mapper, an automatic tool for the semantic harmonization of AD cohort datasets. We developed this tool by fine-tuning BioBERT [14] using our in-house CDM (i.e., comprising 20 cohorts’ variable naming systems) in addition to two distinct CDMs. We defined a cross-connection among all three CDMs to derive a comprehensive variable embedding space from those. Finally, we enabled the AD-Mapper through a web interface to make the tool accessible.

METHODS

Common data model

In developing a model that can distinguish between the semantics of different variables, two aspects played a major role. First, it was essential to include multiple ways that variables have been reported in different cohort studies and within the literature. For example, participants’ years of education were reported differently across cohort studies (Eduy, education, EDUC, etc.). Second, the inclusiveness of variable granularity was another vital aspect of establishing a successful model. The Apolipoprotein alleles (APOE) of participants were reported separately in certain datasets and together in other datasets. To address both of these factors, we consider a variety of ways that variables were addressed by including multiple cohorts’ naming systems. We utilized our in-house mapping CDM which consists of 20 distinct cohort datasets [2]. All cohorts’ variables were mapped to a reference term and an ontology where it was relevant. The reference terms were defined based on the variable description in addition to the abbreviation of the term where it was applicable (i.e., commonly used). For instance, the Mini-Mental State Examination is commonly referred to as MMSE, and as such, we defined the reference term as Mini-Mental State Examination (MMSE). Another example of our proposed CDM workflow based on the Clinical Dementia Rating Scale Sum of Boxes (CDRSB) reference term is shown in Fig. 1.

Fig. 1

Example case of semantic variable harmonization. Different cohorts (indicated in different colors) use different variable names and accompanying descriptions. AD-Mapper ensures that all are mapped to each other and to the reference term “Clinical Dementia Rating Scale Sum of Boxes (CDRSB)”. This example case also illustrates the need for semantic harmonization beyond string matching, shown by the substantial spelling variations across variable names and descriptions. Note: here the “–” represents lack of variable description in the respective cohort.

Example case of semantic variable harmonization. Different cohorts (indicated in different colors) use different variable names and accompanying descriptions. AD-Mapper ensures that all are mapped to each other and to the reference term “Clinical Dementia Rating Scale Sum of Boxes (CDRSB)”. This example case also illustrates the need for semantic harmonization beyond string matching, shown by the substantial spelling variations across variable names and descriptions. Note: here the “–” represents lack of variable description in the respective cohort.

To expand the variability of the variable naming system, we manually harmonized previously constructed data models against our in-house model, namely, data models that were developed by Dementias Platform UK (DPUK) [9] and the Neuronet cohort initiative (NEURO Cohort). The set of harmonized variables generated by DPUK, called C-Surv, included 124 commonly measured variables among 4 distinct cohort studies. Similarly, the NEURO Cohort data model included 94 AD-related terms. Lastly, we harmonized our reference terms against the OMOP CDM terms where the applicable term was available [7]. As a result, we created the AD-Mapper CDM.

The AD-Mapper NLP model

In this section, we explain the training, validation, and test data generated using the AD-Mapper CDM, the model training strategy of the AD-Mapper tool, and how the AD-Mapper can be used for inference. Additionally, we describe two different ways in which the mapping would be carried out: either using the reference terms (i.e., previously defined in AD-Mapper CDM) or using those reference terms in addition to prior knowledge of the cohorts’ and CDMs’ mappings.

Training data

To investigate the feasibility of semantic harmonization of AD cohort studies using PLMs, we constructed a binary classification task aimed at discriminating between pairs of semantically equivalent variables (positives) and pairs that are not equivalent (negatives). By training on data consisting of positives and negatives, a fine-tuned PLM could generalize from it to find semantically equivalent pairs in a previously unseen set of variables. More specifically, we generated training data using the mappings that were established among different cohorts, CDMs, and the reference terms within the AD-Mapper CDM. We sampled different combinations of mappings among each reference term and mapped variables. For instance, the reference term ‘Age’ was mapped to multiple variables representing the age of participants in different cohorts and within CDMs (e.g., age, PTAGE, samplingAge, and age_at_visit, etc.). We created pairs for each mapping between ‘Age’ and all possible mapped variables. We followed a similar procedure for all pairs of mappings until we had generated one-to-one mappings, each labeled with 1 (i.e., positive) to represent semantically equivalent pairs.

For the negative mappings, we aimed to provide close variations of positive mapping pairs to enhance the model’s ability to distinguish very similar terms that are not equivalent. To achieve this, we created pairs of mappings within each modality, as variables grouped into a modality often had similar naming conventions. For instance, in the magnetic resonance imaging (MRI) mappings, we had left and right hippocampus volume and it was important for the model to learn the difference between ‘left’ and ‘right’. Therefore, we generated pairs that could be potentially confusing for the model to distinguish (e.g., Lhippo_FS_adj and Rhippo_FS_adj) and assigned them to class 0 (i.e., negative). This resulted in 13,330 positive and 13,330 negative labels. Moreover, we employed a weighted loss function where the negatives and positives are weighted by 0.1 and 0.9, respectively. This was undertaken to penalize false positives accurately and to represent the distribution of classes in later application scenarios, in which the majority of pairings between any two variables are expected to be non-semantically equivalent.

Variable mappings were frequently too uninformative for a model to learn the relation between the variables. To address this, we included descriptions where available for each variable in CDMs and cohort studies’ data dictionaries. For this purpose, we added two respective descriptions to each mapping pair in our training data. The description for the reference term was taken from the mapped ontology term. In contrast, the description for the mapped term was extracted from the corresponding data dictionary or the CDM from which the variable originated. Thereafter, we formed a sentence by concatenating each variable and its corresponding description (e.g., ‘variable’+‘its description’; Fig. 2, Step 2). This strategy was then used for training our model. For further explanation, we refer to the Supplementary Material.

Fig. 2

The underlying workflow of the AD-Mapper tool. Training the AD-Mapper consists of three steps: training BioBERT (i.e., Model A) on a text corpus, retrieving the names and descriptions from the CDM, and generating the embeddings. Then, the inference step comprises using Model B and A to generate a ranking of potential candidates and calculating the probabilities of positive mappings, respectively.

The underlying workflow of the AD-Mapper tool. Training the AD-Mapper consists of three steps: training BioBERT (i.e., Model A) on a text corpus, retrieving the names and descriptions from the CDM, and generating the embeddings. Then, the inference step comprises using Model B and A to generate a ranking of potential candidates and calculating the probabilities of positive mappings, respectively.

Validation of cohort studies

For model tuning and performance investigation, we divided the dataset into train, test, and validation sets with fractions of 80/4/16, respectively. The test set consisted of 549 unseen examples. Additionally, to assess the performance of the plan strategy for the automatic harmonization of AD studies, we collected three distinct cohort studies (BRACE [16], AMED [17], and ALFA [18]) and manually harmonized them to the AD-Mapper CDM. The total number of available variables and mapping overlap between each cohort and the AD-Mapper CMD is shown in Supplementary Table 1. However, to evaluate the model’s performance on unseen datasets, we excluded these mappings from the training dataset.

Models and training strategy

To develop a tool that could perform semantic harmonization of AD cohort studies, we developed a workflow that contained two models, Model A and B (Fig. 2, AD-Mapper Training). First, we trained a Model A, performing a binary classification task using BioBERT [14] with a feed-forward classification head. This model compared two variables of the AD-Mapper CDM and their definitions, if available, and determined whether they were a match. Here, we considered two variables to be a match if they were semantically equivalent. In contrast, Model B, also based on BioBERT, was trained on embedding a variable into an embedding space (ℝ768) such that it was close, measured by the Euclidean distance, to its corresponding reference term. The initial embedding to be learned by model B was generated by taking each variable’s representation at the last hidden layer of BioBERT within model A. Initially, Model A and B were trained independently from each other, whereas they were used consecutively in the later application.

Inference

The final pipeline employed in the AD-Mapper application consists of the two models (i.e., Models A and B) shown in Fig. 2 (i.e., AD-Mapper Inference). A mapping procedure starts with an input including a variable name and a suitable variable description if a description is available. This is concatenated to a joint sentence and fed into Model B. This first part of the pipeline returns K potential candidates, where K is a parameter provided by the user. Those candidates are the K closest variables in the embedding space where the variable gets mapped into while utilizing Model B. Then these K pairs, consisting of the input variable and each potential candidate, are fed into Model A, which returns a class probability for each pair indicating whether they belong to class 1, implying a match. All candidates below a certain threshold (e.g., 0.5) are eliminated and the rest is returned, where the one with the highest class probability is returned as the winner. The returned winner is the reference term suggested by the AD-Mapper.

As we previously established a mapping among all reference terms, cohort studies, and CDMs within the AD-Mapper CDM, we expanded the search for the best matches with this knowledge. We included another optional function, where not only the K candidates are determined by the model, but based on prior determined mappings, the model could also compare the new variable with those existing mappings. For instance, once K = 5 candidates are generated as a result of model B, the total number of candidates fed to model A is enriched by all prior known mappings onto any of the 5 candidates. Finally, all 5 candidates and the prior known mappings onto those candidates are given to model A, and ultimately a winner is determined. In this case, the winner is either within one of the 5 original candidates or one of the later added ones. In the latter case, the final winner is determined by reversing the known mapping, and subsequently obtaining the reference term.

Considering that sometimes variables within cohort studies could potentially have a similar naming (e.g., AGE, age_at_visit), we added another optional functionality to the model to perform fuzzy string matching (https://github.com/maxbachmann/Levenshtein). We included this by assigning a weight to each methodology for the finalized mapping. This was done by introducing two weights W1, W2ε [0, 1] where the first weight represents the BioBERT-based model (i.e., AD-Mapper model) and the second relies on the fuzzy string matching technique by calculating the Levenshtein distance between variables. This allows the user to decide whether the data should be harmonized using each technique separately or rather a weighted combination of both models.

The AD-Mapper Interface

The AD-Mapper application comes with two interfaces. The first one is a web-based graphical user interface (https://ad-mapper.scai.fraunhofer.de/), specifically designed for mapping single variables as well as.csv files. In both cases, the model requires variable names and their descriptions, if available, to perform the harmonization. Second, we provide powerful REST APIs that enable technically experienced users to employ the AD-Mapper in other applications. The APIs are fully documented and organized in a Swagger UI interface [19]. The interaction via REST APIs allows the user to fully leverage all configuration options that the mapping pipeline provides.

RESULTS

AD-Mapper CDM

We constructed AD-Mapper CDM using previously established in-house data mappings and expanded the variables naming system by including three previously created CDMs. The AD-Mapper CDM included 20 cohorts’ variable naming systems semantically harmonized against a reference term and an ontology term per variable. In total 1,218 unique reference terms were included in the AD-Mapper CDM. The total number of each cohort’s specific term and each external CDM that was harmonized against the reference terms is presented in Table 1. The overlap between our in-house CDM and the other external CDMs (i.e., C-Surv, NEURO Cohort, and OMOP) was small. One reason for this was that external CDMs were often developed based on the availability of measurements in this field, rather than the measurements themselves. To clarify further, certain terms were defined as biomarkers availability indicators (i.e., biomarker collected, yes or no) whereas AD-Mapper CDM focused on each specific measurement and how it was defined among different cohorts and CDMs. For instance, there were only 46 terms in C-Surv CDM that could be harmonized against our in-house CDM. Additionally, often CDMs consisted of a limited number of variables (e.g., NEURO Cohort 94 terms), which resulted in fewer terms being mapped as AD-Mapper CDM contained granular measurements. Lastly, we extended our AD-Mapper CDM to include previously unseen cohorts and additional variables. The total number of variables from each source is presented in Supplementary Table 2.

Table 1

Total number of harmonized variables included in the AD-Mapper CDM. This table comprises all cohorts used for training the AD-Mapper model and hence excludes the ALFA, AMED, and BRACE cohorts. The final CDM presented on the AD-Mapper website consists of both training and test data as well as additional variables (resulting in 1300 unique variables, Supplementary Table 2)

Variable originConsortium# Mapped variables
CohortA4 [20]Anti-Amyloid Treatment in Asymptomatic Alzheimer’s Disease73
ABVIB [21]Aging Brain: Vasculature, Ischemia, and Behavior12
ADNI [22]The Alzheimer’s Disease Neuroimaging Initiative340
AIBL [23]The Australian Imaging, Biomarker &Lifestyle Flagship Study of Ageing54
ANM [24]AddNeuroMed162
ARWIBO [25]Alzheimer’s Disease Repository Without Borders1104
DOD-ADNI [26]Effects of TBI &PTSD on Alzheimer’s Disease in Vietnam Vets322
EDSD [27]The European DTI Study on Dementia1061
EMIF [28]European Medical Information Framework30
EPAD [29]European Prevention of Alzheimer’s Dementia116
I-ADNI [30]The Italian Alzheimer’s Disease
Neuroimaging Initiative1064
JADNI [31]Japanese Alzheimer’s Disease Neuroimaging Initiative647
NACC [32]The National Alzheimer’s Coordinating Center187
OASIS [33]Open Access Series of Imaging Studies1057
PREVENT-AD [34]Pre-symptomatic Evaluation of Experimental or Novel Treatments for Alzheimer’s Disease34
PharmaCog [35]Prediction of Cognitive Properties of New Drug Candidates for Neurodegenerative Diseases in Early Clinical Development1067
ROSMAP [36]The Religious Orders Study and Memory and Aging Project29
VASCULAR [37]The Vascular Contributors to Prodromal Alzheimer’s Disease53
VITA [38]Vienna Transdanube Aging1054
WMH-AD [39]White Matter Hyperintensities in Alzheimer’s Disease1054
CDMNEURO Cohort14
C-Surv [9]46
OMOP [7]The Observational Medical Outcomes Partnership107
OtherCURIE [40]Compact Uniform Resource Identifiers189
Reference term1218

Model performance

We investigated the AD-Mapper’s performance by validating the model using the test split of the data, as well as distinct cohorts’ datasets that were excluded in the training step of the model. Using different weights and K values, we harmonized the test set and previously unseen datasets and calculated the accuracy of the mappings (Table 2). In addition, we compared the performance of the final pipeline with a baseline model. For that purpose, we used a string-matching model.

Table 2

Performance scores for harmonization of the test set and previously unseen cohorts using the AD-Mapper and string-matching as a baseline comparison. K indicates the number of candidates to be assessed by the model

DatasetModelPrior knowledgeW-values (W1, W2)KAccuracy (in %)
CDM test setString-matching8.5
AD-Mapper1.0, 0.0172.9
AD-MapperNo1.0, 0.0576.3
AD-MapperYes1.0, 0.0574.88
AD-MapperNo1.0, 0.01077.2
AD-MapperYes1.0, 0.01073.93
BRACEString-matching26.4
AD-Mapper1.0, 0.0164.7
AD-MapperNo0.8, 0.2576.4
AD-MapperYes0.8, 0.2561.76
AD-MapperNo0.8, 0.21076.4
AD-MapperYes0.8, 0.21044.11
AMEDString-matching4.16
AD-Mapper159.09
AD-MapperNo1.0, 0.0556.81
AD-MapperYes0.9, 0.1570.45
AD-MapperNo1.0, 0.01056.81
AD-MapperYes0.9, 0.11061.36
ALFAString-matching15.51
AD-Mapper167.92
AD-MapperNo0.7, 0.3567.92
AD-MapperYes0.7, 0.3554.71
AD-MapperNo0.7, 0.31067.92
AD-MapperYes0.7, 0.31054.71

Our results indicated that for the test dataset, the AD-Mapper had a superior accuracy of 77.2% while considering 10 candidates compared to the baseline approach (string-matching with 8.5% accuracy). Similarly, for all three cohort studies, previously unseen by the model, we observed that the AD-Mapper achieved (without incorporating prior known mappings) a much higher accuracy than the string-matching (BRACE 76.4% with K = 5 and K = 10; AMED 59.09% with K = 1; and ALFA 67.92% with K = 1, K = 5, and K = 10). Moreover, we noticed that, out of the cohorts harmonized, only the AMED cohort showed higher accuracy when using the model while utilizing prior known mappings than the one without. The AMED cohort had an accuracy of 70.45% while the model utilized the mappings of other cohort studies and CDMs with K = 5. Furthermore, in all cases, except for the CDM test set, the model without prior knowledge achieved the same score for K = 5 or K = 10, which indicates that the model can predict the target variable from a small number of candidates.

We observed that different weights indicating the inclusion of different mapping strategies yielded various results. For instance, for the CDM test set, solely relying on the BioBERT-based prediction yielded the highest accuracy, while for the BRACE, AMED, and ALFA, combining the mapping technique (i.e., the BioBERT and string-matching) in a weighted manner reported better performance.

To further evaluate the AD-Mapper model, we exclusively utilized Model B and investigated whether the correct target variable is among the K candidates. The results of this analysis are presented in Supplementary Table 3. In all instances where both K = 5 and K = 10 candidates were employed, they exhibited identical accuracy, except in the case of the test set. We observed the following accuracy rates: 71.7% for ALFA, 76.5% for BRACE, 79.5% for AMED, and 82.9% for the test set when using K = 5, and 84.8% when using K = 10. Additionally, we assessed whether it is possible to harmonize the variables that have not been included in the AD-Mapper CDM (Supplementary Table 4). We provide additional details in the Supplementary Material.

Our results revealed that the maximum accuracy was achieved by selecting K = 5, and by increasing K to 10, the accuracy remained the same in the majority of cases. We observed the same results when solely utilizing Model B (see Fig. 2, Supplementary Table 3) to investigate whether the correct target could be found within a certain number of candidates. Taking this into account, we recommend that K = 5 could be a sufficient standard for the number of candidates and that the model conducts the harmonization at a considerably quicker rate.

Exemplary application scenario

We developed the AD-Mapper web interface and showcased our tool for accelerating semantic data harmonization of AD cohort studies. Within this interface, users can simply upload their data dictionary as a.csv file and download the harmonized version. The interface allows users to select how the mapping should be carried out, either using the BioBERT-based model alone or in combination with the string-matching technique. An example of the AD-Mapper application scenario is illustrated in Fig. 3. As shown in the figure, users can customize the weights and the number of candidates before executing the variable mapping. Users can also choose to have their data dictionary harmonized against the reference term or additionally have the harmonized version of all data sources available within the AD-Mapper CDM.

Fig. 3

A page preview of the AD-Mapper user interface.

A page preview of the AD-Mapper user interface.

We included the AD-Mapper CDM as an additional function of the AD-Mapper interface. By doing so, we enable users to investigate cross-mappings among different cohorts and CDMs that have been harmonized against a reference term. Users can decide which weights are more suitable for their cohort dataset based on the similarity or dissimilarity of their data with the AD-Mapper CDM’s reference terms. For instance, when the variable naming system is defined similarly to our reference term, utilizing W2 (i.e., the string-matching technique) in addition to the BioBERT-based model could potentially result in higher accuracy. Lastly, users can easily download the AD-Mapper CDM to use it for semantic data harmonization of the cohorts that were included and have been harmonized.

DISCUSSION

In this work, we investigated whether semantic harmonization of cohort studies could be undertaken using automated models. Since semantic data harmonization has frequently been a manual task, often very time-consuming, we explored the feasibility of employing a PLM to simplify this process. We fine-tuned a BioBERT model using a CDM that we generated, and evaluated the model’s performance using previously unseen datasets. Additionally, we compared our approach to a naive string-matching baseline model. Our results indicate that the AD-Mapper model can effectively facilitate the semantic harmonization of AD cohort studies.

Enabling variable transparency through a CDM

One underrepresented aspect of AD cohort studies is variable transparency and their naming conventions among cohorts or CDMs [2]. Even though multiple attempts were made previously to bring this aspect to light [2, 10, 11], most research focused on a limited number of variables. The AD-Mapper CDM addressed all of these challenges by considering a multitude of variables ranging from multiple modalities (1,218 variables), and by including 23 different variable naming conventions (20 cohort studies and three CDMs). The AD-Mapper CDM can provide a valuable reference to highlight the underexplored biomarkers in this field. Another major concern was data privacy as data owners often prevent the researchers from uploading or sharing the data. We factored this aspect by using AD data dictionaries rather than the data itself as a foundation for our analysis and tools.

Automatic data harmonization

We evaluated the harmonization accuracy of unseen AD data using a naive approach as well as our proposed AD-Mapper model and showed that the latter technique exhibited superior accuracy. Furthermore, due to occasional similarities in naming systems among certain cohort studies, we investigated whether the inclusion of prior knowledge regarding cohort and CDM mappings would enhance the accuracy of correct match determination. This assessment demonstrated that, whilst the incorporation of prior knowledge increased harmonization accuracy for the AMED cohort, the opposite was observed in other cohorts. This could potentially be attributed to the AMED cohort sharing a highly similar naming system with the ADNI, DOD-ADNI, and JADNI cohort studies. By contrast, the other cohort studies did not share a similar naming system with any of the included variables’ mappings. Considering this finding, it can be inferred that employing prior knowledge could prove beneficial when similarities exist between the input cohort (i.e., the data requiring harmonization) and the variable naming system included within the AD-Mapper CDM, regardless of the cohort or CDM to which it closely corresponds.

To date, to our knowledge, there has been no automatic NLP-based harmonization of cohort studies conducted beyond standard string-matching techniques [12] or manual curation [41]. The application of such a standard technique (string-matching) led to relatively poor performance in the present study. This is highly important as utilizing cohort studies for data-driven investigation requires semantic data harmonization and preprocessing [2, 6], and as such, incorrect harmonization of such cohorts could potentially lead to inaccurate discoveries. Although manual harmonization is often the most reliable approach, given the lengthy process of manual data harmonization, an automatic harmonization tool such as AD-Mapper could facilitate the procedure. In a broader context, semantic automatic harmonization can facilitate the use of large-scale multi-site datasets in the context of disease modeling, which ultimately contributes to advancements in drug discovery and treatment outcomes. Currently, clinical research is often limited by single-cohort data collection and analysis. Therefore, combining variables from multiple cohorts through AD-Mapper opens opportunities for more robust findings.

Model complexity and performance

To achieve better accuracy for the harmonization of cohort studies, we included a large number of variable naming systems stemming from different cohorts and CDMs within the AD-Mapper CDM. This factor influenced the variability of measurements being defined and subsequently resulted in 1,218 unique reference terms. By selecting K candidates to explore and assess for finding the correct match for each unseen variable, the model expanded the search by that number of candidates to estimate the probability of them being a correct match. However, the choice of how many candidates are potentially sufficient to find the correct target for each unseen variable had a direct effect on the computational complexity of the model. Thus, the higher the number of candidates to be compared to, the higher the model complexity, affecting the inference speed.

The accuracy of the variable harmonization was influenced by the choice of methodology that was utilized for finding the best mapping targets. One possible explanation is that by utilizing the string-matching technique in addition to the BioBERT-based mapping, the model is leveraging the similarities that exist between the potential candidates (the K-chosen reference terms) and the input variables to narrow down the best match. On the contrary, based on the observed result, we presume that the string-matching technique could decrease the accuracy of finding the best match when the input variables are not similar (i.e., they have a greater edit distance) to the reference terms. Thus, the ideal weights are highly dependent on the input cohort.

Limitations

One of the main limitations of our study was that we could only enable semantic harmonization, and the data distribution and measurement units may not be comparable across cohorts. This result stems from cohort studies employing certain exclusion and inclusion criteria while recruiting their participants, as well as differences in the way measurements were collected (e.g., different MRI devices). Additionally, cohort studies implement specific privacy agreements upon sharing the datasets, which hamper uploading or sharing of the data in any form (e.g., uploading data in the AD-Mapper interface). Given these challenges, within the scope of our paper, we could not achieve data interoperability beyond the semantics of variables. Here, we limited our mapping of the variables to those that are potentially comparable using a few preprocessing steps. Another limitation was that we could only cover the most commonly measured variables in our AD-Mapper CDM, and there are potentially certain variables that have not been included so far. This limitation was due to study-specific goals and the measurements collected to achieve these goals, as well as the granularity of variables shared with researchers. Moreover, although AD-Mapper clearly outperforms previous approaches, the fact that errors persist in an entirely automated mapping procedure suggests that while the accuracy level remains high, there is still a need for manual curation. However, integrating the presented approach with manual post-processing efforts has the potential to significantly reduce the human endeavor required for semantically harmonizing large datasets. Future work can address this shortcoming by extending the AD-Mapper CDM, resulting in a refined embedding space, which ultimately leads to improved performance.

Conclusion

Semantic data harmonization is an essential preliminary step in cross-cohort investigations before conducting data-driven analyses. Our objective was to expedite this often time-consuming process by developing the AD-Mapper interface. In doing so, we aimed to emphasize the importance of data compatibility and provide transparent insights into the biomarkers measured across diverse cohorts. The AD-Mapper demonstrated the feasibility of automatically harmonizing cohort studies, suggesting that this methodology could be applied to the study of different diseases.

AUTHOR CONTRIBUTIONS

Philipp Wegner (Conceptualization; Investigation; Methodology; Software; Validation; Visualization; Writing – review & editing); Helena Balabin (Formal analysis; Investigation; Methodology; Writing – review & editing); Mehmet Can Ay (Data curation; Formal analysis; Writing – review & editing); Sarah Bauermeister (Data curation; Resources; Writing – review & editing); Lewis Killin (Resources; Writing – review & editing); John Gallacher (Resources; Writing – review & editing); Martin Hofmann-Apitius (Funding acquisition; Resources; Supervision; Writing – review & editing); Yasamin Salimi (Conceptualization; Data curation; Investigation; Methodology; Resources; Supervision; Writing – original draft).

ACKNOWLEDGMENTS

We would like to express our appreciation to all data owners for their commitment to open science principles through the sharing of their data.

We thank the study participants and staff of the Rush Alzheimer’s Disease Center. ROSMAP was supported by NIA grants P30AG010161, R01AG015819, and R01AG017917.

The A4 Study is a secondary prevention trial in preclinical Alzheimer’s disease, aiming to slow cognitive decline associated with brain amyloid accumulation in clinically normal older individuals. The A4 Study is funded by a public-private-philanthropic partnership, including funding from the National Institutes of Health-National Institute on Aging, Eli Lilly and Company, Alzheimer’s Association, Accelerating Medicines Partnership, GHR Foundation, an anonymous foundation and additional private donors, with in-kind support from Avid and Cogstate. The companion observational Longitudinal Evaluation of Amyloid Risk and Neurodegeneration (LEARN) Study is funded by the Alzheimer’s Association and GHR Foundation. The A4 and LEARN Studies are led by Dr. Reisa Sperling at Brigham and Women’s Hospital, Harvard Medical School and Dr. Paul Aisen at the Alzheimer’s Therapeutic Research Institute (ATRI), University of Southern California. The A4 and LEARN Studies are coordinated by ATRI at the University of Southern California, and the data are made available through the Laboratory for Neuro Imaging at the University of Southern California. The participants screening for the A4 Study provided permission to share their de-identified data in order to advance the quest to find a successful treatment for Alzheimer’s disease. We would like to acknowledge the dedication of all the participants, the site personnel, and all of the partnership team members who continue to make the A4 and LEARN Studies possible. The complete A4 Study Team list is available on: a4study.org/a4-study-team.

Data collection and sharing of ABVIB was funded by the National Institutes on Aging (NIA) P01 AG12435.

Data collection and sharing of ARWIBO was supported by the Italian Ministry of Health, under the following grant agreements: Ricerca Corrente IRCCS Fatebenefratelli, Linea di Ricerca 2; Progetto Finalizzato Strategico 2000–2001 “Archivio normativo italiano di morfometria cerebrale con risonanza magnetica (età 40+)”; Progetto Finalizzato Strategico 2000–2001 “Decadimento cognitivo lieve non dementigeno: stadio preclinico di malattia di Alzheimer e demenza vascolare. Caratterizzazione clinica, strumentale, genetica e neurobiologica e sviluppo di criteri diagnostici utilizzabili nella realtà nazionale,”; Progetto Finalizzata 2002 “Sviluppo di indicatori di danno cerebrovascolare clinicamente significativo alla risonanza magnetica strutturale”; Progetto Fondazione CARIPLO 2005–2007 “Geni di suscettibilità per gli endofenotipi associati a malattie psichiatriche e dementigene”; “Fitness and Solidarietà”; and anonymous donors. Data used in the preparation of this article were obtained from the Alzheimer’s Disease Repository Without Borders (ARWiBo) (http://www.arwibo.it). The Principal Investigator of ARWIBO is Giovanni B. Frisoni, MD, University Hospitals and University of Geneva, Geneva, Switzerland, and IRCCS Fatebenefratelli, The National Centre for Alzheimer’s and Mental Diseases, Brescia, Italy. ARWIBO is the result of effort of many researchers of IRCCS Fatebenefratelli: G. Binetti, MD, Neurobiology; L. Bocchio-Chiavetto, PhD, Neuropharmacology; M. Cotelli, PhD, Neuropsychology Unit; C. Minussi, PhD, Neurophysiology; M. Gennarelli, PhD, Genetic Unit; R. Ghidoni, PhD, Proteomics Unit; D. Moretti, MD, and O. Zanetti, MD, Alzheimer’s Unit.

EPAD LCS is registered at www.clinicaltrials.gov Identifier: NCT02804789. Data used in preparation of this article were obtained from the EPAD LCS data set V.IMI, doi:10.34688/epadlcs_v.imi_20.10.30. The EPAD LCS was launched in 2015 as a public private partnership, led by Chief Investigator Professor Craig Ritchie MB BS. The primary research goal of the EPAD LCS is to provide a well-phenotyped probability-spectrum population for developing and continuously improving disease models for Alzheimer’s disease in individuals without dementia. This work used data and/or samples from the EPAD project which received support from the EU/EFPIA Innovative Medicines Initiative Joint Undertaking EPAD grant agreement n° 115736 and an Alzheimer’s Association Grant (SG21-818099-EPAD).

PharmaCog was funded through the European Community’s ‘Seventh Framework’ Programme (FP7/2007–2013) for an innovative scheme, the Innovative Medicines Initiative (IMI). IMI is a young and unique public-private partnership, founded in 2008 by the pharmaceutical industry (represented by the European Federation of Pharmaceutical Industries and Associations), EFPIA and the European Communities (represented by the European Commission).

J-ADNI was supported by the following grants: Translational Research Promotion Project from the New Energy and Industrial Technology Development Organization of Japan; Research on Dementia, Health Labor Sciences Research Grant; Life Science Database Integration Project of Japan Science and Technology Agency; Research Association of Biotechnology (contributed by Astellas Pharma Inc., Bristol-Myers Squibb, Daiichi-Sankyo, Eisai, Eli Lilly and Company, Merck-Banyu, Mitsubishi Tanabe Pharma, Pfizer Inc., Shionogi & Co., Ltd., Sumitomo Dainippon, and Takeda Pharmaceutical Company), Japan, and a grant from an anonymous Foundation.

Data collection and sharing for this project was funded by the Alzheimer’s Disease Neuroimaging Initiative (ADNI) (National Institutes of Health Grant U01 AG024904) and DOD ADNI (Department of Defense award number W81XWH-12-2-0012). ADNI is funded by the National Institute on Aging, the National Institute of Biomedical Imaging and Bioengineering, and through generous contributions from the following: AbbVie, Alzheimer’s Association; Alzheimer’s Drug Discovery Foundation; Araclon Biotech; BioClinica, Inc.; Biogen; Bristol-Myers Squibb Company; CereSpir, Inc.; Cogstate; Eisai Inc.; Elan Pharmaceuticals, Inc.; Eli Lilly and Company; EuroImmun; F. Hoffmann-La Roche Ltd and its affiliated company Genentech, Inc.; Fujirebio; GE Healthcare; IXICO Ltd.; Janssen Alzheimer Immunotherapy Research & Development, LLC.; Johnson & Johnson Pharmaceutical Research & Development LLC.; Lumosity; Lundbeck; Merck & Co., Inc.; Meso Scale Diagnostics, LLC.; NeuroRx Research; Neurotrack Technologies; Novartis Pharmaceuticals Corporation; Pfizer Inc.; Piramal Imaging; Servier; Takeda Pharmaceutical Company; and Transition Therapeutics. The Canadian Institutes of Health Research is providing funds to support ADNI clinical sites in Canada. Private sector contributions are facilitated by the Foundation for the National Institutes of Health (http://www.fnih.org). The grantee organization is the Northern California Institute for Research and Education, and the study is coordinated by the Alzheimer’s Therapeutic Research Institute at the University of Southern California. ADNI data are disseminated by the Laboratory for Neuro Imaging at the University of Southern California. This research was also supported by NIH grants P30 AG010129 and K01 AG030514.

The NACC database is funded by NIA/NIH Grant U24 AG072122. NACC data are contributed by the NIA-funded ADRCs: P30 AG062429 (PI James Brewer, MD, PhD), P30 AG066468 (PI Oscar Lopez, MD), P30 AG062421 (PI Bradley Hyman, MD, PhD), P30 AG066509 (PI Thomas Grabowski, MD), P30 AG066514 (PI Mary Sano, PhD), P30 AG066530 (PI Helena Chui, MD), P30 AG066507 (PI Marilyn Albert, PhD), P30 AG066444 (PI John Morris, MD), P30 AG066518 (PI Jeffrey Kaye, MD), P30 AG066512 (PI Thomas Wisniewski, MD), P30 AG066462 (PI Scott Small, MD), P30 AG072979 (PI David Wolk, MD), P30 AG072972 (PI Charles DeCarli, MD), P30 AG072976 (PI Andrew Saykin, PsyD), P30 AG072975 (PI David Bennett, MD), P30 AG072978 (PI Neil Kowall, MD), P30 AG072977 (PI Robert Vassar, PhD), P30 AG066519 (PI Frank LaFerla, PhD), P30 AG062677 (PI Ronald Petersen, MD, PhD), P30 AG079280 (PI Eric Reiman, MD), P30 AG062422 (PI Gil Rabinovici, MD), P30 AG066511 (PI Allan Levey, MD, PhD), P30 AG072946 (PI Linda Van Eldik, PhD), P30 AG062715 (PI Sanjay Asthana, MD, FRCP), P30 AG072973 (PI Russell Swerdlow, MD), P30 AG066506 (PI Todd Golde, MD, PhD), P30 AG066508 (PI Stephen Strittmatter, MD, PhD), P30 AG066515 (PI Victor Henderson, MD, MS), P30 AG072947 (PI Suzanne Craft, PhD), P30 AG072931 (PI Henry Paulson, MD, PhD), P30 AG066546 (PI Sudha Seshadri, MD), P20 AG068024 (PI Erik Roberson, MD, PhD), P20 AG068053 (PI Justin Miller, PhD), P20 AG068077 (PI Gary Rosenberg, MD), P20 AG068082 (PI Angela Jefferson, PhD), P30 AG072958 (PI Heather Whitson, MD), P30 AG072959 (PI James Leverenz, MD).

The results published here are in whole or in part based on data obtained from the AD Knowledge Portal (https://adknowledgeportal.org). These data are from the Vascular Contributors to Prodromal Alzheimer’s disease (VASCULAR) study. The study is part of the M2OVE-AD supported studies and is supported by NIH/NIA (PI: Ihab Hajjar, MD, MS grant numbers: AG051633 and AG057470. The investigators acknowledge the contribution of the study participants who donated their time and effort for this study.

FUNDING

MCA, MHA, and YS would like to acknowledge the financial support from the B-IT foundation. Dementias Platform UK (DPUK): The Medical Research Council supports DPUK (SB and JG) through grant MR/T0333771; PI John Gallacher.

CONFLICT OF INTEREST

The authors have no conflict of interest to report.

DATA AVAILABILITY

The data are not publicly available due to privacy or ethical restrictions. The code is available at: https://github.com/SCAI-BIO/ad-mapper

SUPPLEMENTARY MATERIAL

[1] The supplementary material is available in the electronic version of this article: https://dx.doi.org/10.3233/JAD-240116.

REFERENCES

[1] 

Birkenbihl C , Salimi Y , Domingo-Fernándéz D , Lovestone S , AddNeuroMed Consortium , Fröhlich H , Hofmann-Apitius M , the Japanese Alzheimer’s Disease Neuroimaging Initiative the Alzheimer’s Disease Neuroimaging Initiative ((2020) ) Evaluating the Alzheimer’s disease data landscape. Alzheimers Dement (N Y) 6: , e12102.

[2] 

Salimi Y , Domingo-Fernández D , Bobis-Álvarez C , Hofmann-Apitius M , Birkenbihl C ((2022) ) ADataViewer: Exploring semantically harmonized Alzheimer’s disease cohort datasets. Alzheimers Res Ther 14: , 69.

[3] 

Birkenbihl C , Salimi Y , Fröhlich H , the Japanese Alzheimer’s Disease Neuroimaging Initiative, the Alzheimer’s Disease Neuroimaging Initiative ((2022) ) Unraveling the heterogeneity in Alzheimer’s disease progression across multiple cohorts and the implications for data-driven disease modeling. Alzheimers Dement 18: , 251–261.

[4] 

Salimi Y , Domingo-Fernández D , Hofmann-Apitius M , Birkenbihl C , the Alzheimer’s Disease Neuroimaging Initiative, the Japanese Alzheimer’s Disease Neuroimaging Initiative, the Alzheimer’s Disease Repository Without Borders Investigators, the European Prevention of Alzheimer’s Disease (EPAD) Consortium ((2023) ) Data-driven thresholding statistically biases ATN profiling across cohort datasets. J Prev Alzheimers Dis 11: , 185–195.

[5] 

Fröhlich H , Balling R , Beerenwinkel N , Kohlbacher O , Kumar S , Lengauer T , Maathuis MH , Moreau Y , Murphy SA , Przytycka TM , Rebhan M , Röst H , Schuppert A , Schwab M , Spang R , Stekhoven D , Sun J , Weber A , Ziemek D , Zupan B ((2018) ) From hype to reality: Data science enabling personalized medicine. BMC Med 16: , 1–5.

[6] 

Kalra D ((2019) ) The importance of real-world data to precision medicine. Per Med 16: , 79–82.

[7] 

Observational Medical Outcomes Partnership ((2015) ) OMOP Common Data Model v5.0. https://athena.ohdsi.org/search-terms/start, Last updated August 31, 2023, Accessed on September 20, 2023.

[8] 

Szalma S , Koka V , Khasanova T , Perakslis ED ((2010) ) Effective knowledge management in translational medicine. J Transl Med 8: , 68.

[9] 

Bauermeister S , Phatak M , Sparks K , Sargent L , Griswold M , McHugh C , Nalls M , Young S , Bauermeister J , Elliot P , Steptoe A , Porteous D , Dufouil C , Gallacher J ((2023) ) Evaluating the harmonisation potential of diverse cohort datasets. Eur J Epidemiol 38: , 605–615.

[10] 

Gallacher J , de Reydet de Vulpillieres F , Amzal B , Angehrn Z , Bexelius C , Bintener C , Bouvy JC , Campo L , Diaz C , Georges J , Gray A , Hottgenroth A , Jonsson P , Mittelstadt B , Potashman MH , Reed C , Sudlow C , Thompson R , Tockhorn-Heidenreich A , Turner A , van der Lei J , Visser PJ , the ROADMAP Consortium ((2019) ) Challenges for optimizing real-world evidence in Alzheimer’s disease: The ROADMAP project. J Alzheimers Dis 67: , 495–501.

[11] 

Oliveira JL , Trifan A , Silva LA ((2019) ) EMIF Catalogue: A collaborative platform for sharing and reusing biomedical data. Int J Med Inform 126: , 35–45.

[12] 

Wegner P , Schaaf S , Uebachs M , Domingo-Fernández D , Salimi Y , Gebel S , Sargsyan A , Birkenbihl C , Springstubbe S , Klockgether T , Fluck J , Hofmann-Apitius M , Kodamullil AT ((2022) ) Integrative data semantics through a model-enabled data stewardship. Bioinformatics 38: , 3850–3852.

[13] 

Devlin J , Chang MW , Lee K , Toutanova K ((2018) ) BERT: Pre-training of deep bidirectional transformers for language understanding. arXiv, doi: 1810.04805 [Preprint]. Posted October 11, 2018.

[14] 

Lee J , Yoon W , Kim S , Kim D , Kim S , So CH , Kang J ((2020) ) BioBERT: A pre-trained biomedical language representation model for biomedical text mining. Bioinformatics 36: , 1234–1240.

[15] 

Kalyan KS , Rajasekharan A , Sangeetha S ((2022) ) AMMU: A survey of transformer-based biomedical pretrained language models. J Biomed Inform 126: , 103982.

[16] 

Tales A ((2019) ) BRACE. Dementias Platform UK.

[17] 

Suzuki K ((2017) ) Preclinical AD and Biomarker; from J-ADNI to AMED Preclinical Study. Brain Nerve 69: , 691–700.

[18] 

Molinuevo JL , Gramunt N , Gispert JD , Fauria K , Esteller M , Minguillon C , Sánchez-Benavides G , Huesa G , Morán S , Dal-Ré R , Camí J ((2016) ) The ALFA project: A research platform to identify early pathophysiological features of Alzheimer’s disease. Alzheimers Dement (N Y) 2: , 82–92.

[19] 

OpenAPI Initiative ((2013) ) Swagger UI. https://swagger.io/tools/swagger-ui/, Last updated September 29, 2023, Accessed on October 1, 2023.

[20] 

Sperling RA , Rentz DM , Johnson KA , Karlawish J , Donohue M , Salmon DP , Aisen P ((2014) ) The A4 study: Stopping AD before symptoms begin? Sci Transl Med 6: , 13.

[21] 

Rodriguez FS , Zheng L , Chui HC , Aging Brain: Vasculature, Ischemia, and Behavior Study ((2019) ) Psychometric characteristics of cognitive reserve: How high education might improve certain cognitive abilities in aging. Dement Geriatr Cogn Disord 47: , 335–344.

[22] 

Mueller SG , Weiner MW , Thal LJ , Petersen RC , Jack CR , Jagust W , Trojanowski JQ , Toga AW , Beckett L ((2005) ) Ways toward an early diagnosis in Alzheimer’s disease: The Alzheimer’s Disease Neuroimaging Initiative (ADNI). Alzheimers Dement 1: , 55–66.

[23] 

Ellis KA , Bush AI , Darby D , De Fazio D , Foster J , Hudson P , Lautenschlager NT , Lenzo N , Martins RN , Maruff P , Masters C , Milner A , Pike K , Rowe C , Savage G , Szoeke C , Taddei K , Villemagne V , Woodward M , Ames D ((2009) ) The Australian Imaging, Biomarkers and Lifestyle (AIBL) study of aging: Methodology and baseline characteristics of 1112 individuals recruited for a longitudinal study of Alzheimer’s disease. Int Psychogeriatr 21: , 672–687.

[24] 

Birkenbihl C , Westwood S , Shi L , Nevado-Holgado A , Westman E , Lovestone S , on behalf of the AddNeuroMed Consortium, Hofmann-Apitius M ((2021) ) ANMerge: A comprehensive and accessible Alzheimer’s disease patient-level dataset. J Alzheimers Dis 79: , 423–431.

[25] 

Frisoni GB , Prestia A , Zanetti O , Galluzzi S , Romano M , Cotelli M , Gennarelli M , Binetti G , Bacchio L , Paghera B , Amicucci G , Bonetti M , Benussi L , Ghidoni R , Geroldi C ((2009) ) Markers of Alzheimer’s disease in a population attending a memory clinic. Alzheimers Dement 5: , 307–317.

[26] 

Weiner MW , Veitch DP , Hayes J , Neylan T , Grafman J , Aisen PS , Petersen RC , Jack C , Jagust W , Trojanowski JQ , Shaw LM , Saykin AJ , Green RC , Harvey D , Toga AW , Friedl KE , Pacifico A , Sheline Y , Yaffe K , Mohlenoff B , Department of Defense Alzheimer’s Disease Neuroimaging Initiative ((2014) ) Effects of traumatic brain injury and posttraumatic stress disorder on Alzheimer’s disease in veterans, using the Alzheimer’s Disease Neuroimaging Initiative. Alzheimers Dement 10: (3S), S226–S235.

[27] 

Brueggen K , Grothe MJ , Dyrba M , Fellgiebel A , Fischer F , Filippi M , Agosta F , Nestor P , Meisenzahl E , Blautzik J , Frölich L , Hausner L , Bokde ALW , Frisoni G , Pievani M , Klöppel S , Prvulovic D , Barkhof F , Pouwels PJW , Schröder J , Teipel S ((2017) ) The European DTI Study on Dementia— a multicenter DTI and MRI study on Alzheimer’s disease and mild cognitive impairment. Neuroimage 144: , 305–308.

[28] 

Bos I , Vos S , Vandenberghe R , Scheltens P , Engelborghs S , Frisoni G , Molinuevo JL , Wallin A , Lleó A , Popp J , Martinez-Lage P , Baird A , Dobson R , Legido-Quigley C , Sleegers K , Van Broeckhoven C , Bertram L , ten Kate M , Barkhof F , Zetterberg H , Lovestone S , Streffer J , Visser PJ ((2018) ) The EMIF-AD Multimodal Biomarker Discovery study: Design, methods and cohort characteristics. Alzheimers Res Ther 10: , 1–9.

[29] 

Solomon A , Kivipelto M , Molinuevo JL , Tom B , Ritchie CW ((2018) ) European prevention of Alzheimer’s dementia longitudinal cohort study (EPAD LCS): Study protocol. BMJ Open 8: , e021017.

[30] 

Cavedo E , Redolfi A , Angeloni F , Babiloni C , Lizio R , Chiapparini L , Bruzzone MG , Aquino D , Sabatini U , Alesiani M , Cherubini A , Salvatore E , Soricelli A , Vernieri F , Scrascia F , Sinforiani E , Chiarati P , Bastianello S , Montella P , Corbo D , Tedeschi G , Marino S , Baglieri A , De Salvo S , Carducci F , Quattrocchi CC , Cobelli M , Frisoni GB , for the Alzheimer’s Disease Neuroimaging Initiative ((2014) ) The Italian Alzheimer’s Disease Neuroimaging Initiative (I-ADNI): Validation of Structural MR Imaging. J Alzheimers Dis 40: , 941–952.

[31] 

Iwatsubo T ((2010) ) Japanese Alzheimer’s Disease Neuroimaging Initiative: Present status and future. Alzheimers Dement 6: , 297–299.

[32] 

Besser L , Kukull W , Knopman DS , Chui H , Galasko D , Weintraub S , Jicha G , Carlsson C , Bruns J , Quinn J , Sweet RA , Rascovsky K , Teylan M , Beekly D , Thomas G , Bollenbeck M , Monsell S , Mock C , Zhou XH , Thomas N , Robichaud E , Dean M , Hubbard J , Jacka M , Schwabe-Fry K , Wu J , the Neuropsychology Work Group, Directors, and Clinical Core leaders of the National Institute on Aging-funded US Alzheimer’s Disease Centers, Phelps C , Morris JC ((2018) ) Version 3 of the national Alzheimer’s coordinating center’s uniform data set. Alzheimer Dis Assoc Disord 32: , 351–358.

[33] 

Marcus DS , Fotenos AF , Csernansky JG , Morris JC , Buckner RL ((2010) ) Open access series of imaging studies: Longitudinal MRI data in nondemented and demented older adults. J Cogn Neurosci 22: , 2677–2684.

[34] 

Breitner JCS , Poirier J , Etienne PE , Leoutsakos JM ((2016) ) Rationale and Structure for a New Center for Studies on Prevention of Alzheimer’s Disease (StoP-AD). J Prev Alzheimers Dis 3: , 236–242.

[35] 

Galluzzi S , Marizzoni M , Babiloni C , Albani D , Antelmi L , Bagnoli C , Bartes-Faz D , Cordone S , Didic M , Farotti L , Fiedler U , Forloni G , Girtler N , Hensch T , Jovicich J , Leeuwis A , Marra C , Molinuevo JL , Nobili F , Pariente J , Parnetti L , Payoux P , Del Percio C , Ranjeva J , Rolandi E , Rossini PM , Schönknecht P , Soricelli A , Tsolaki M , Visser PJ , Wiltfang J , Richardson JC , Bordet R , Blin O , Frisoni GB , the PharmaCog Consortium ((2016) ) Clinical and biomarker profiling of prodromal Alzheimer’s disease in workpackage 5 of the Innovative Medicines Initiative PharmaCog project: A ‘European ADNI study’. J Intern Med 279: , 576–591.

[36] 

Bennett DA , Schneider JA , Arvanitakis Z , Wilson RS ((2012) ) Overview and findings from the religious orders study. Curr Alzheimer Res 9: , 628–645.

[37] 

BSHARP Studies ((2018) ) VASCULAR (VAScular ContribUtors to prodromaL AlzheimeR’s disease). https://med.emory.edu/departments/medicine/divisions/geriatrics-gerontology/research/labs/bsharp/studies.html, Last updated 2018, Accessed on April 10, 2023.

[38] 

Fischer P , Jungwirth S , Krampla W , Weissgram S , Kirchmeyr W , Schreiber W , Huber K , Rainer M , Bauer P , Tragl KH ((2002) ) Vienna Transdanube Aging “VITA”: Study design, recruitment strategies and level of participation. Springer, Vienna, pp. 105–116.

[39] 

Damulina A , Pirpamer L , Seiler S , Benke T , Dal-Bianco P , Ransmayr G , Struhal W , Hofer E , Langkammer C , Duering M , Fazekas F , Schmidt R ((2019) ) White matter hyperintensities in Alzheimer’s disease: A lesion probability mapping study. J Alzheimers Dis 68: , 789–796.

[40] 

EBISPOT ((2023) ) OLS4. https://www.ebi.ac.uk/ols4, Accessed on October 10, 2023.

[41] 

Hao X , Li X , Zhang GQ , Tao C , Schulz PE , Cui L ((2023) ) An ontology-based approach for harmonization and cross-cohort query of Alzheimer’s disease data resources. BMC Med Inform Decis Mak 23: (Suppl 1), 151.