GDC-SM: The GDC Schema Matching Benchmark
Fuente:
Zenodo
Salvato in:
| Autori principali: | , , , , , , , , |
|---|---|
| Natura: | Recurso digital |
| Lingua: | inglese |
| Pubblicazione: |
Zenodo
2025
|
| Soggetti: | |
| Accesso online: | |
| Tags: |
Aggiungi Tag
Nessun Tag, puoi essere il primo ad aggiungerne!!
|
| _version_ | 1866902245403000832 |
|---|---|
| author | Santos, Aécio Wu, Eden Lopez, Roque Keegan, Sarah Pena, Eduardo Liu, Wenke Liu, Yurong Fenyo, David Freire, Juliana |
| author_facet | Santos, Aécio Wu, Eden Lopez, Roque Keegan, Sarah Pena, Eduardo Liu, Wenke Liu, Yurong Fenyo, David Freire, Juliana |
| contents | <p>GDC-SM is a schema matching evaluation benchmark based on a real data harmonization scenario that is common in biomedical research: pooling datasets from multiple studies to increase the number of patients. We used the study by Li et al. (2023) in which the authors: 1) pooled data from ten studies (available as supplementary material in the original primary research papers) that cover multiple patient cohorts and cancer types; and 2) mapped each dataset into the GDC standard, a data standard set by the US National Cancer Institute's <a href="https://gdc.cancer.gov/" target="_blank" rel="noopener">Genomics Data Commons (GDC)</a> for cancer genomic data.</p> <p>We obtained datasets from the 10 studies related to tumor analysis (see table below), and, with the help of the biomedical experts, manually aligned and matched these datasets to the <a href="https://gdc.cancer.gov/" target="_blank" rel="noopener">Genomics Data Commons (GDC)</a> standard version 3.1.0. The GDC standard dictionary describes data using a graph model that includes names and descriptions for nodes and attributes, as well as acceptable values for some attributes. However, for compatibility with other schema matching methods and benchmarks, we transformed the model to a relational schema that contains only column names and domain information (i.e., we disregard column descriptions). We created a simplified table reflecting the GDC format, the "target" table, listing domain values for each column without repetition.</p> <p>The benchmark includes 10 pairs of input-target tables. The number of columns in the source tables ranges from 16 to 179, and the number of rows ranges from 93 to 225. Our simplified GDC target schema comprises a single table with 736 columns. While some columns have a small number of distinct values (e.g., binary yes/no attributes), some contain up to 4,478 distinct values. The ground truth was manually curated by multiple annotators -- at least 3 annotators per matching pair, who used a mix of manual and automated methods for identifying possible candidate matches (e.g., <a href="https://gdc-mvs.nci.nih.gov/gdc/" target="_blank" rel="noopener">GDC search tools</a> and <a href="https://github.com/VIDA-NYU/bdi-kit" target="_blank" rel="noopener">bdi-kit</a>). Given that the correctness of some matches is very challenging to determine even for bioinformatics experts (e.g., it may require reading the original papers or asking data producers), the final match decisions were made by consensus based on what users would expect from an algorithm given the limited context. </p> <p>For more details, refer to our paper:</p> <blockquote>Yurong Liu, Eduardo Pena, Aécio Santos, Eden Wu, and Juliana Freire. "Magneto: Combining Small and Large Language Models for Schema Matching." To appear at PVLDB 2025. <a href="https://arxiv.org/abs/2412.08194" target="_blank" rel="noopener"><em>Arxiv preprint 2412.08194</em></a>.</blockquote> <p>For citations, please consider citing the paper above and this dataset as described below: </p> <blockquote>Santos, A., Wu, E., Lopez, R., Keegan, S., Pena, E., Liu, W., Liu, Y., Fenyo, D., & Freire, J. (2025). GDC-SM: The GDC Schema Matching Benchmark (1.0) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.14963588</blockquote> <h2>How to use</h2> <p>The raw datasets used in this benchmark are sourced from publicly-available studies under Creative Commons licenses. However, some of these licenses include the NoDerivatives (ND) restriction, which prevents others from redistributing modified versions of the material, including transformed or processed datasets. Therefore, we only provide the ground-truth annotations and information about how to reconstruct the data tables from their original data source. We describe below how to recreate the CSV table files. </p> <h2>Generating data files from the publisher's original data</h2> <p>For convenience, we provide the <strong>gdc_download.py</strong> script, which automates the process of downloading, extracting, and preparing the data. It includes the following steps:</p> <ol> <li><em>Download Data</em>: It retrieves the dataset from the paper publisher's website (supplemental files distributed with the paper).</li> <li><em>Extract Data:</em> If the file is in Excel format, it extracts the specified sheet to a dataframe file.</li> <li><em>Clean Data:</em> Performs some cleaning steps to ensure datasets are the same as the ones used in the paper (e.g., for the Vasaikar.csv dataset, it removes the first and last rows).</li> <li><em>Save as CSV:</em> The processed data is saved as a .csv file in the input-tables folder.</li> </ol> <p>Install the dependencies listed in the requirements.txt file and run the script, and it will automatically handle the downloading, extraction, and processing of the data for you.</p> <h2>Included files</h2> <p>The dataset release includes the following files:</p> <ul> <li><strong>gdc-sm-data.zip</strong><br>Contains manually curated ground-truth mappings and a standardized target schema based on a real-world biomedical data harmonization task. It includes: <ul> <li><strong>data/ground-truth/</strong><br>Ten CSV files (<code>Cao.csv</code>, <code>Clark.csv</code>, <code>Dou.csv</code>, <code>Gillette.csv</code>, <code>Huang.csv</code>, <code>Krug.csv</code>, <code>McDermott.csv</code>, <code>Satpathy.csv</code>, <code>Vasaikar.csv</code>, <code>Wang.csv</code>), each containing mappings between column names from a source dataset and attributes in the GDC target schema. These mappings serve as the manually curated ground truth for the schema matching task.</li> <li><strong>data/target-tables/</strong><br><code>gdc_unique_columns_concat_values.csv</code>, the GDC target schema formatted as a relational table. It lists all attributes from the GDC data dictionary along with their unique, concatenated domain values.</li> </ul> </li> <li><strong>gdc_download.py</strong><br>A Python script that automates the download, extraction, and preparation of the source datasets directly from the original publishers. It handles Excel-to-CSV conversions, minor data cleaning steps, and file organization. When executed, this script creates two additional folders as output: <ul> <li><strong>data/downloads/</strong><br>Contains the original spreadsheet files downloaded from the paper publisher's website.</li> <li><strong>data/input-tables/<br></strong>Contains tables, in CSV format, to be used as source tables for the schema matching task.</li> </ul> </li> <li><strong>papers_info.json</strong><br>A metadata file listing key details for each source study, including publication titles, URLs to the papers, dataset links, and sheet names from which the benchmark datasets were extracted. Needed needed to run the <code>gdc_download.py</code>.</li> <li><strong>requirements.txt</strong><br>Specifies the Python package dependencies needed to run <code>gdc_download.py</code> .</li> </ul> <h2>Source table information</h2> <p>The table below includes details for each study, such as relevant URLs for the original spreadsheet files used in the benchmark and sheet names where the source tables appear. Each row corresponds to a study and provides the following information:</p> <ul> <li>First Author: Name of the study's first author.</li> <li>Paper Title: Title of the publication.</li> <li>Paper URL: Link to the paper.</li> <li>Dataset URL: Link to the supplementary file containing the dataset extract from the paper for convenience.</li> <li>Relevant File: Name of the file or table in the supplementary material.</li> <li>Sheet Name: Name of the sheet in the file that contains the data.</li> </ul> <div> <table> <tbody> <tr> <td> <p><strong>First Author</strong></p> </td> <td> <p><strong>Paper Title</strong></p> </td> <td> <p><strong>Paper URL</strong></p> </td> <td> <p><strong>Dataset URL</strong></p> </td> <td> <p><strong>Sheet Name</strong></p> </td> </tr> <tr> <td> <p>Clark, D.J.</p> </td> <td> <p>Integrated Proteogenomic Characterization of Clear Cell Renal Cell Carcinoma</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2019.10.007" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2019.10.007</span></span></a></p> <p> </p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867419311237-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867419311237-mmc1.xlsx</a></p> </td> <td> <p>ccrcc_clinical_characteristics</p> </td> </tr> <tr> <td> <p>Krug, K.</p> </td> <td> <p>Proteogenomic Landscape of Breast Cancer Tumorigenesis and Targeted Therapy</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2020.10.036" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2020.10.036</span></span></a></p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867420314008-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867420314008-mmc1.xlsx</a></p> </td> <td> <p>A) Metadata</p> </td> </tr> <tr> <td> <p>Vasaikar, S.</p> </td> <td> <p>Proteogenomic Analysis of Human Colon Cancer Reveals New Therapeutic Opportunities</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2019.03.030" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2019.03.030</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867419302922-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867419302922-mmc1.xlsx</a></p> </td> <td> <p>B-ClinicalData</p> </td> </tr> <tr> <td> <p>Wang, L.-B.</p> </td> <td> <p>Proteogenomic and metabolomic characterization of human glioblastoma</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.ccell.2021.01.006" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.ccell.2021.01.006</span></span></a></p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S1535610821000507-mmc2.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S1535610821000507-mmc2.xlsx</a></p> </td> <td> <p>clinical_data</p> </td> </tr> <tr> <td> <p>Huang, C.</p> </td> <td> <p>Proteogenomic insights into the biology and treatment of HPV-negative head and neck squamous cell carcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.ccell.2020.12.007" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.ccell.2020.12.007</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S1535610820306553-mmc2.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S1535610820306553-mmc2.xlsx</a></p> </td> <td> <p>Meta table</p> </td> </tr> <tr> <td> <p>Satpathy, S.</p> </td> <td> <p>A proteogenomic portrait of lung squamous cell carcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2021.07.016" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2021.07.016</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867421008576-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867421008576-mmc1.xlsx</a></p> </td> <td> <p>Table S1A</p> </td> </tr> <tr> <td> <p>Gillette, M.A.</p> </td> <td> <p>Proteogenomic Characterization Reveals Therapeutic Vulnerabilities in Lung Adenocarcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2020.06.013" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2020.06.013</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867420307443-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867420307443-mmc1.xlsx</a></p> </td> <td> <p>Annotions_S1A</p> </td> </tr> <tr> <td> <p>McDermott, J.E.</p> </td> <td> <p>Proteogenomic Characterization of Ovarian HGSC Implicates Mitotic Kinases, Replication Stress in Observed Chromosomal Instability</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.xcrm.2020.100004" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.xcrm.2020.100004</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S2666379120300045-mmc2.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S2666379120300045-mmc2.xlsx</a></p> </td> <td> <p>BaselineClinicalData</p> </td> </tr> <tr> <td> <p>Cao, L.</p> </td> <td> <p>Proteogenomic characterization of pancreatic ductal adenocarcinoma</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2021.08.023" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2021.08.023</span></span></a></p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867421009971-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867421009971-mmc1.xlsx</a></p> </td> <td> <p>Clinical_data</p> </td> </tr> <tr> <td> <p>Dou, Y.</p> </td> <td> <p>Proteogenomic Characterization of Endometrial Carcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2020.01.026" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2020.01.026</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867420301070-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867420301070-mmc1.xlsx</a></p> </td> <td> <p>UCEC_CPTAC3_meta_table_V2.1</p> </td> </tr> </tbody> </table> </div> <h2>Acknowledgements</h2> <div> <div>This work was supported by NSF awards IIS-2106888 and OAC-2411221, and the DARPA Automating Scientific Knowledge Extraction and Modeling (ASKEM) program, agreement No. HR0011262087, and the ARPA-H BDF program. The views, opinions, and findings expressed are those of the authors and should not be interpreted as representing the official views or policies of DARPA, ARPA-H, the U.S. Government, or NSF. We thank our collaborators, Dr. Tonia Korves and the MITRE team, for contributing their experiences in biomedical data integration and an initial proof of concept of this benchmark.</div> </div> |
| format | Recurso digital |
| id | zenodo_https___doi_org_10_5281_zenodo_14963588 |
| institution | Zenodo |
| language | eng |
| publishDate | 2025 |
| publisher | Zenodo |
| record_format | zenodo |
| spellingShingle | GDC-SM: The GDC Schema Matching Benchmark Santos, Aécio Wu, Eden Lopez, Roque Keegan, Sarah Pena, Eduardo Liu, Wenke Liu, Yurong Fenyo, David Freire, Juliana Schema Matching Data Harmonization GDC Tabular Data Data Integration <p>GDC-SM is a schema matching evaluation benchmark based on a real data harmonization scenario that is common in biomedical research: pooling datasets from multiple studies to increase the number of patients. We used the study by Li et al. (2023) in which the authors: 1) pooled data from ten studies (available as supplementary material in the original primary research papers) that cover multiple patient cohorts and cancer types; and 2) mapped each dataset into the GDC standard, a data standard set by the US National Cancer Institute's <a href="https://gdc.cancer.gov/" target="_blank" rel="noopener">Genomics Data Commons (GDC)</a> for cancer genomic data.</p> <p>We obtained datasets from the 10 studies related to tumor analysis (see table below), and, with the help of the biomedical experts, manually aligned and matched these datasets to the <a href="https://gdc.cancer.gov/" target="_blank" rel="noopener">Genomics Data Commons (GDC)</a> standard version 3.1.0. The GDC standard dictionary describes data using a graph model that includes names and descriptions for nodes and attributes, as well as acceptable values for some attributes. However, for compatibility with other schema matching methods and benchmarks, we transformed the model to a relational schema that contains only column names and domain information (i.e., we disregard column descriptions). We created a simplified table reflecting the GDC format, the "target" table, listing domain values for each column without repetition.</p> <p>The benchmark includes 10 pairs of input-target tables. The number of columns in the source tables ranges from 16 to 179, and the number of rows ranges from 93 to 225. Our simplified GDC target schema comprises a single table with 736 columns. While some columns have a small number of distinct values (e.g., binary yes/no attributes), some contain up to 4,478 distinct values. The ground truth was manually curated by multiple annotators -- at least 3 annotators per matching pair, who used a mix of manual and automated methods for identifying possible candidate matches (e.g., <a href="https://gdc-mvs.nci.nih.gov/gdc/" target="_blank" rel="noopener">GDC search tools</a> and <a href="https://github.com/VIDA-NYU/bdi-kit" target="_blank" rel="noopener">bdi-kit</a>). Given that the correctness of some matches is very challenging to determine even for bioinformatics experts (e.g., it may require reading the original papers or asking data producers), the final match decisions were made by consensus based on what users would expect from an algorithm given the limited context. </p> <p>For more details, refer to our paper:</p> <blockquote>Yurong Liu, Eduardo Pena, Aécio Santos, Eden Wu, and Juliana Freire. "Magneto: Combining Small and Large Language Models for Schema Matching." To appear at PVLDB 2025. <a href="https://arxiv.org/abs/2412.08194" target="_blank" rel="noopener"><em>Arxiv preprint 2412.08194</em></a>.</blockquote> <p>For citations, please consider citing the paper above and this dataset as described below: </p> <blockquote>Santos, A., Wu, E., Lopez, R., Keegan, S., Pena, E., Liu, W., Liu, Y., Fenyo, D., & Freire, J. (2025). GDC-SM: The GDC Schema Matching Benchmark (1.0) [Data set]. Zenodo. https://doi.org/10.5281/zenodo.14963588</blockquote> <h2>How to use</h2> <p>The raw datasets used in this benchmark are sourced from publicly-available studies under Creative Commons licenses. However, some of these licenses include the NoDerivatives (ND) restriction, which prevents others from redistributing modified versions of the material, including transformed or processed datasets. Therefore, we only provide the ground-truth annotations and information about how to reconstruct the data tables from their original data source. We describe below how to recreate the CSV table files. </p> <h2>Generating data files from the publisher's original data</h2> <p>For convenience, we provide the <strong>gdc_download.py</strong> script, which automates the process of downloading, extracting, and preparing the data. It includes the following steps:</p> <ol> <li><em>Download Data</em>: It retrieves the dataset from the paper publisher's website (supplemental files distributed with the paper).</li> <li><em>Extract Data:</em> If the file is in Excel format, it extracts the specified sheet to a dataframe file.</li> <li><em>Clean Data:</em> Performs some cleaning steps to ensure datasets are the same as the ones used in the paper (e.g., for the Vasaikar.csv dataset, it removes the first and last rows).</li> <li><em>Save as CSV:</em> The processed data is saved as a .csv file in the input-tables folder.</li> </ol> <p>Install the dependencies listed in the requirements.txt file and run the script, and it will automatically handle the downloading, extraction, and processing of the data for you.</p> <h2>Included files</h2> <p>The dataset release includes the following files:</p> <ul> <li><strong>gdc-sm-data.zip</strong><br>Contains manually curated ground-truth mappings and a standardized target schema based on a real-world biomedical data harmonization task. It includes: <ul> <li><strong>data/ground-truth/</strong><br>Ten CSV files (<code>Cao.csv</code>, <code>Clark.csv</code>, <code>Dou.csv</code>, <code>Gillette.csv</code>, <code>Huang.csv</code>, <code>Krug.csv</code>, <code>McDermott.csv</code>, <code>Satpathy.csv</code>, <code>Vasaikar.csv</code>, <code>Wang.csv</code>), each containing mappings between column names from a source dataset and attributes in the GDC target schema. These mappings serve as the manually curated ground truth for the schema matching task.</li> <li><strong>data/target-tables/</strong><br><code>gdc_unique_columns_concat_values.csv</code>, the GDC target schema formatted as a relational table. It lists all attributes from the GDC data dictionary along with their unique, concatenated domain values.</li> </ul> </li> <li><strong>gdc_download.py</strong><br>A Python script that automates the download, extraction, and preparation of the source datasets directly from the original publishers. It handles Excel-to-CSV conversions, minor data cleaning steps, and file organization. When executed, this script creates two additional folders as output: <ul> <li><strong>data/downloads/</strong><br>Contains the original spreadsheet files downloaded from the paper publisher's website.</li> <li><strong>data/input-tables/<br></strong>Contains tables, in CSV format, to be used as source tables for the schema matching task.</li> </ul> </li> <li><strong>papers_info.json</strong><br>A metadata file listing key details for each source study, including publication titles, URLs to the papers, dataset links, and sheet names from which the benchmark datasets were extracted. Needed needed to run the <code>gdc_download.py</code>.</li> <li><strong>requirements.txt</strong><br>Specifies the Python package dependencies needed to run <code>gdc_download.py</code> .</li> </ul> <h2>Source table information</h2> <p>The table below includes details for each study, such as relevant URLs for the original spreadsheet files used in the benchmark and sheet names where the source tables appear. Each row corresponds to a study and provides the following information:</p> <ul> <li>First Author: Name of the study's first author.</li> <li>Paper Title: Title of the publication.</li> <li>Paper URL: Link to the paper.</li> <li>Dataset URL: Link to the supplementary file containing the dataset extract from the paper for convenience.</li> <li>Relevant File: Name of the file or table in the supplementary material.</li> <li>Sheet Name: Name of the sheet in the file that contains the data.</li> </ul> <div> <table> <tbody> <tr> <td> <p><strong>First Author</strong></p> </td> <td> <p><strong>Paper Title</strong></p> </td> <td> <p><strong>Paper URL</strong></p> </td> <td> <p><strong>Dataset URL</strong></p> </td> <td> <p><strong>Sheet Name</strong></p> </td> </tr> <tr> <td> <p>Clark, D.J.</p> </td> <td> <p>Integrated Proteogenomic Characterization of Clear Cell Renal Cell Carcinoma</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2019.10.007" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2019.10.007</span></span></a></p> <p> </p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867419311237-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867419311237-mmc1.xlsx</a></p> </td> <td> <p>ccrcc_clinical_characteristics</p> </td> </tr> <tr> <td> <p>Krug, K.</p> </td> <td> <p>Proteogenomic Landscape of Breast Cancer Tumorigenesis and Targeted Therapy</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2020.10.036" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2020.10.036</span></span></a></p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867420314008-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867420314008-mmc1.xlsx</a></p> </td> <td> <p>A) Metadata</p> </td> </tr> <tr> <td> <p>Vasaikar, S.</p> </td> <td> <p>Proteogenomic Analysis of Human Colon Cancer Reveals New Therapeutic Opportunities</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2019.03.030" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2019.03.030</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867419302922-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867419302922-mmc1.xlsx</a></p> </td> <td> <p>B-ClinicalData</p> </td> </tr> <tr> <td> <p>Wang, L.-B.</p> </td> <td> <p>Proteogenomic and metabolomic characterization of human glioblastoma</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.ccell.2021.01.006" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.ccell.2021.01.006</span></span></a></p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S1535610821000507-mmc2.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S1535610821000507-mmc2.xlsx</a></p> </td> <td> <p>clinical_data</p> </td> </tr> <tr> <td> <p>Huang, C.</p> </td> <td> <p>Proteogenomic insights into the biology and treatment of HPV-negative head and neck squamous cell carcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.ccell.2020.12.007" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.ccell.2020.12.007</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S1535610820306553-mmc2.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S1535610820306553-mmc2.xlsx</a></p> </td> <td> <p>Meta table</p> </td> </tr> <tr> <td> <p>Satpathy, S.</p> </td> <td> <p>A proteogenomic portrait of lung squamous cell carcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2021.07.016" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2021.07.016</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867421008576-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867421008576-mmc1.xlsx</a></p> </td> <td> <p>Table S1A</p> </td> </tr> <tr> <td> <p>Gillette, M.A.</p> </td> <td> <p>Proteogenomic Characterization Reveals Therapeutic Vulnerabilities in Lung Adenocarcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2020.06.013" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2020.06.013</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867420307443-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867420307443-mmc1.xlsx</a></p> </td> <td> <p>Annotions_S1A</p> </td> </tr> <tr> <td> <p>McDermott, J.E.</p> </td> <td> <p>Proteogenomic Characterization of Ovarian HGSC Implicates Mitotic Kinases, Replication Stress in Observed Chromosomal Instability</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.xcrm.2020.100004" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.xcrm.2020.100004</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S2666379120300045-mmc2.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S2666379120300045-mmc2.xlsx</a></p> </td> <td> <p>BaselineClinicalData</p> </td> </tr> <tr> <td> <p>Cao, L.</p> </td> <td> <p>Proteogenomic characterization of pancreatic ductal adenocarcinoma</p> </td> <td> <p><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2021.08.023" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2021.08.023</span></span></a></p> </td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867421009971-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867421009971-mmc1.xlsx</a></p> </td> <td> <p>Clinical_data</p> </td> </tr> <tr> <td> <p>Dou, Y.</p> </td> <td> <p>Proteogenomic Characterization of Endometrial Carcinoma</p> </td> <td><a title="Persistent link using digital object identifier" href="https://doi.org/10.1016/j.cell.2020.01.026" target="_blank" rel="noreferrer noopener"><span><span>https://doi.org/10.1016/j.cell.2020.01.026</span></span></a></td> <td> <p><a href="https://ars.els-cdn.com/content/image/1-s2.0-S0092867420301070-mmc1.xlsx">https://ars.els-cdn.com/content/image/1-s2.0-S0092867420301070-mmc1.xlsx</a></p> </td> <td> <p>UCEC_CPTAC3_meta_table_V2.1</p> </td> </tr> </tbody> </table> </div> <h2>Acknowledgements</h2> <div> <div>This work was supported by NSF awards IIS-2106888 and OAC-2411221, and the DARPA Automating Scientific Knowledge Extraction and Modeling (ASKEM) program, agreement No. HR0011262087, and the ARPA-H BDF program. The views, opinions, and findings expressed are those of the authors and should not be interpreted as representing the official views or policies of DARPA, ARPA-H, the U.S. Government, or NSF. We thank our collaborators, Dr. Tonia Korves and the MITRE team, for contributing their experiences in biomedical data integration and an initial proof of concept of this benchmark.</div> </div> |
| title | GDC-SM: The GDC Schema Matching Benchmark |
| topic | Schema Matching Data Harmonization GDC Tabular Data Data Integration |
| url | https://doi.org/10.5281/zenodo.14963588 |