<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news</id>
    <title>GWAS Catalog Documentation Blog</title>
    <updated>2026-08-19T00:00:00.000Z</updated>
    <generator>https://github.com/jpmonette/feed</generator>
    <link rel="alternate" href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news"/>
    <subtitle>GWAS Catalog Documentation Blog</subtitle>
    <icon>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/img/favicon.ico</icon>
    <entry>
        <title type="html"><![CDATA[Version 2 of the GWAS Catalog REST API: what’s changed from v1?]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide"/>
        <updated>2026-08-19T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[The GWAS Catalog REST API v2 provides simpler queries, richer filtering, new resources and a redesigned response model. Here is what users of v1 need to know when migrating.]]></summary>
        <content type="html"><![CDATA[<p>The <a href="https://www.ebi.ac.uk/gwas/docs/api" target="_blank" rel="noopener noreferrer" class="">GWAS Catalog REST API v2</a> is now available, providing a redesigned way to access curated GWAS Catalog data programmatically.</p>
<!-- -->
<p>The API has been redesigned based on user feedback. It provides simpler querying, additional endpoints, richer filtering, ontology-aware searches and access to more Catalog data.</p>
<p>If you currently use the v1 API in scripts, pipelines or applications, this post explains the main differences and what you should review when migrating.</p>
<blockquote>
<p><strong>Starting something new?</strong> Use v2. The v1 examples below are included only to help existing users find code that needs replacing.</p>
</blockquote>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="why-a-new-api">Why a new API?<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#why-a-new-api" class="hash-link" aria-label="Direct link to Why a new API?" title="Direct link to Why a new API?" translate="no">​</a></h2>
<p>The GWAS Catalog has grown considerably since the original REST API was developed. V1 provides access to studies, associations, variants and traits, but its design increasingly made complex queries difficult.</p>
<p>For example, v1 exposes separate search endpoints such as <code>findByPubmedId</code>, <code>findByRsId</code> and <code>findByEfoTrait</code>. Searching SNPs includes an endpoint called <code>findIdsByLocationsChromosomeNameAndLocationsChromosomePositionBetween</code>.</p>
<p>V2 takes a different approach. Resources can be queried directly using filters, and additional entities such as publications, genes and ancestries have their own endpoints. The redesign is intended to provide a more robust and scalable API while making complex queries easier to construct.</p>
<p>The API remains focused on the Catalog’s literature-curated top associations and associated metadata. A separate redevelopment is underway for API access to the full genome-wide summary-statistics collection.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="at-a-glance-legacy-v1-compared-with-recommended-v2">At a glance: legacy v1 compared with recommended v2<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#at-a-glance-legacy-v1-compared-with-recommended-v2" class="hash-link" aria-label="Direct link to At a glance: legacy v1 compared with recommended v2" title="Direct link to At a glance: legacy v1 compared with recommended v2" translate="no">​</a></h2>
<p>The v1 column is included only to help existing users find and replace legacy code. For new scripts, pipelines and applications, use v2.</p>
<table><thead><tr><th>Area</th><th>Legacy REST API v1 — replace this</th><th>Recommended REST API v2</th></tr></thead><tbody><tr><td>Base path</td><td><code>/gwas/rest/api/...</code></td><td><code>/gwas/rest/api/v2/...</code></td></tr><tr><td>Query model</td><td>Separate <code>/search/findBy...</code> endpoints</td><td>Filters applied directly to resource endpoints</td></tr><tr><td>Query parameter naming</td><td>Search parameters commonly use camelCase, such as <code>pubmedId</code></td><td>Query parameters use snake_case, such as <code>pubmed_id</code></td></tr><tr><td>Response design</td><td>HAL/hypermedia with <code>_links</code> and <code>_embedded</code></td><td>Redesigned v2 resource responses</td></tr><tr><td>Studies and associations</td><td><code>/studies</code> and <code>/associations</code></td><td><code>/v2/studies</code> and <code>/v2/associations</code>, with richer filtering</td></tr><tr><td>Variants</td><td><code>/singleNucleotidePolymorphisms</code></td><td>Redesigned single-nucleotide-polymorphism resource</td></tr><tr><td>Publications and genes</td><td>Primarily represented through studies and SNP mappings</td><td>Dedicated <code>/v2/publications</code> and <code>/v2/genes</code> resources</td></tr><tr><td>Ancestries</td><td>Embedded within studies</td><td>Dedicated ancestry resources and study ancestry endpoints</td></tr><tr><td>Trait searches</td><td>Basic EFO trait lookup/search</td><td>Child-trait-aware ontology searches</td></tr><tr><td>Gene searches</td><td>Broader v1 gene annotation behaviour</td><td>Standard or extended gene sets</td></tr><tr><td>Pagination and usage</td><td>Default 20 records; page and size</td><td>Default 20 records, next links and a documented 15-query-per-second limit</td></tr></tbody></table>
<p>One of the most significant changes is how queries are constructed.</p>
<p>Conceptually, a v1 query might look like this:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">/gwas/rest/api/associations/search/findByRsId?rsId=rs123</span><br></div></code></pre></div></div>
<p>In v2, search criteria are supplied as filters on the resource:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">/gwas/rest/api/v2/associations?rs_id=rs123</span><br></div></code></pre></div></div>
<p>The same principle applies across the API. Instead of learning which <code>findBy...</code> endpoint corresponds to a particular query, users can start with the resource they want and filter it. This also makes the API better suited to more complex queries involving multiple criteria.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="more-ways-to-filter-studies">More ways to filter studies<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#more-ways-to-filter-studies" class="hash-link" aria-label="Direct link to More ways to filter studies" title="Direct link to More ways to filter studies" translate="no">​</a></h2>
<p>V1 already provides several ways to find studies, including by PubMed ID, Catalog accession, disease trait, EFO trait and availability of full p-value data. V2 expands the available filtering substantially.</p>
<p>Study searches can include information such as:</p>
<ul>
<li class=""><code>pubmed_id</code></li>
<li class=""><code>disease_trait</code></li>
<li class=""><code>efo_trait</code></li>
<li class=""><code>efo_id</code></li>
<li class=""><code>accession_id</code></li>
<li class=""><code>cohort</code></li>
<li class=""><code>ancestral_group</code></li>
<li class=""><code>mapped_gene</code></li>
</ul>
<p>V2 also provides additional study properties, pagination and sorting. Questions that previously required several requests, additional processing or another Catalog data source can increasingly be expressed directly as API queries.</p>
<p>The v2 release also exposes additional data including cohorts, background traits and fuller free-text sample descriptions.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="more-first-class-resources">More first-class resources<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#more-first-class-resources" class="hash-link" aria-label="Direct link to More first-class resources" title="Direct link to More first-class resources" translate="no">​</a></h2>
<p>V1 is centred primarily around four major resources:
studies, associations, SNPs and EFO traits.</p>
<p>For example, publication information and ancestry information are contained within the study representation. A v1 study includes publication metadata alongside an array of ancestry records.</p>
<p>V2 exposes more concepts as resources in their own right.
These include publications, genes and ancestries, alongside studies, associations, variants and EFO traits.</p>
<p>For example:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">/gwas/rest/api/v2/publications</span><br></div><div class="token-line" style="color:#393A34"><span class="token plain">/gwas/rest/api/v2/genes</span><br></div><div class="token-line" style="color:#393A34"><span class="token plain">/gwas/rest/api/v2/studies/{accession_id}/ancestries</span><br></div></code></pre></div></div>
<p>This makes it easier to start a query from the entity relevant to your analysis rather than retrieving another resource simply because the information happens to be embedded within it.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="better-ontology-aware-trait-searches">Better ontology-aware trait searches<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#better-ontology-aware-trait-searches" class="hash-link" aria-label="Direct link to Better ontology-aware trait searches" title="Direct link to Better ontology-aware trait searches" translate="no">​</a></h2>
<p>GWAS Catalog traits are mapped to ontology terms, allowing related phenotypes to be represented consistently. V2 can use that ontology hierarchy when performing searches.</p>
<p>When querying by an EFO trait, users can choose between retrieving records annotated directly with the requested trait or also retrieving records annotated with more specific child traits. For example, a query for asthma can either return only records mapped directly to asthma, or additionally include more specific concepts such as status asthmaticus.</p>
<p>This behaviour is controlled using the child-trait search option:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">show_child_traits=false</span><br></div></code></pre></div></div>
<p>This returns direct annotations only. To include descendant traits, use:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">show_child_traits=true</span><br></div></code></pre></div></div>
<p>For precise queries, using an ontology identifier such as <code>MONDO_0004979</code> rather than a text trait name is recommended.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="an-important-change-to-gene-searches">An important change to gene searches<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#an-important-change-to-gene-searches" class="hash-link" aria-label="Direct link to An important change to gene searches" title="Direct link to An important change to gene searches" translate="no">​</a></h2>
<p>Users migrating gene-based queries should pay particular attention to the definition of the gene set.</p>
<p>V2 provides two definitions of the gene set associated with Catalog variants.</p>
<p>With <code>extended_geneset=false</code>, the API uses genes to which the variant maps, together with the nearest upstream and downstream genes according to Ensembl annotation. This corresponds to the annotation displayed by the current GWAS Catalog web interface.</p>
<p>For example:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">https://www.ebi.ac.uk/gwas/rest/api/v2/associations?mapped_gene=HBB&amp;page=0&amp;size=20</span><br></div></code></pre></div></div>
<p>With <code>extended_geneset=true</code>, the API uses the broader set of Ensembl and RefSeq genes mapping upstream and downstream of each variant:</p>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><div class="token-line" style="color:#393A34"><span class="token plain">https://www.ebi.ac.uk/gwas/rest/api/v2/associations?mapped_gene=HBB&amp;extended_geneset=true&amp;page=0&amp;size=20</span><br></div></code></pre></div></div>
<p>The extended gene set corresponds to the annotation used by the v1 API. V2 defaults to the first option to avoid confusing discrepancies with search-page results unless the broader set is intentionally requested.</p>
<p>Therefore, simply recreating a v1 gene query in v2 may not produce the same results. If reproducing v1 gene-query behaviour is important to your analysis, use <code>extended_geneset=true</code> when supported by the endpoint.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="changes-to-variants">Changes to variants<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#changes-to-variants" class="hash-link" aria-label="Direct link to Changes to variants" title="Direct link to Changes to variants" translate="no">​</a></h2>
<p>The naming of the SNP resource has also been modernised.</p>
<p>V1 uses <code>/singleNucleotidePolymorphisms</code> and identifies individual SNPs using an rsID. The SNP representation includes genomic locations, functional class and genomic contexts, with links to associated studies and associations.</p>
<p>V2 retains variant and rsID-based querying, but uses the redesigned v2 resource structure and supports filters including rsID, genomic location, PubMed ID, chromosome and mapped gene.</p>
<p>Update both the endpoint URLs and any code that depends on the structure of v1 SNP responses.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="changes-to-response-handling-and-projections">Changes to response handling and projections<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#changes-to-response-handling-and-projections" class="hash-link" aria-label="Direct link to Changes to response handling and projections" title="Direct link to Changes to response handling and projections" translate="no">​</a></h2>
<p>V1 is explicitly a hypermedia API using HAL. Responses contain <code>_links</code>, and the v1 documentation advises users to follow these links instead of constructing URLs themselves. Collections additionally place records under <code>_embedded</code>.</p>
<p>V1 also makes extensive use of projections, including convenience representations such as <code>associationByStudy</code>, <code>associationBySnp</code> and <code>associationByEfoTrait</code>.</p>
<p>V2 instead provides explicitly documented resources, filters and response schemas through its OpenAPI reference. For applications built around v1, migration involves more than changing request URLs. Code that parses v1 HAL responses or depends on projections should also be reviewed.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="pagination-and-api-usage">Pagination and API usage<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#pagination-and-api-usage" class="hash-link" aria-label="Direct link to Pagination and API usage" title="Direct link to Pagination and API usage" translate="no">​</a></h2>
<p>Both versions paginate large result sets. V1 returns 20 records by default and documents <code>page</code> and <code>size</code>, with up to 500 records in a single request.</p>
<p>V2 also defaults to 20 records per page. Applications retrieving complete result sets should follow the next links returned by the API rather than assuming that the first response contains every result.</p>
<p>V2 additionally has a rate limit of 15 queries per second. When this is exceeded, subsequent calls are slowed. Pipelines making many requests should account for both pagination and throttling.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="more-catalog-data-through-the-api">More Catalog data through the API<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#more-catalog-data-through-the-api" class="hash-link" aria-label="Direct link to More Catalog data through the API" title="Direct link to More Catalog data through the API" translate="no">​</a></h2>
<p>The redesign is not purely technical. V2 exposes data that was previously unavailable through the API or required users to obtain it through the GWAS Catalog website and downloads.</p>
<p>This includes:</p>
<ul>
<li class=""><strong>Cohorts:</strong> discovery-stage cohort information.</li>
<li class=""><strong>Background traits:</strong> traits used to describe the study context.</li>
<li class=""><strong>Fuller sample descriptions:</strong> more complete descriptions of study samples.</li>
<li class=""><strong>Terms and licensing:</strong> information to help users understand reuse.</li>
<li class=""><strong>Integrated annotations:</strong> additional annotations from resources such as Ensembl.</li>
</ul>
<p>New endpoints for publications, genes, genomic contexts and ancestries also allow previously complicated queries to be performed more directly. The result is an API that more closely represents the breadth of information now available within the Catalog.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="what-do-i-need-to-change">What do I need to change?<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#what-do-i-need-to-change" class="hash-link" aria-label="Direct link to What do I need to change?" title="Direct link to What do I need to change?" translate="no">​</a></h2>
<p>Before you switch over, check these nine things:</p>
<p>If you maintain a pipeline or application using v1, migration should be treated as a small API upgrade project, not just a URL substitution.</p>
<p>In particular, check the following:</p>
<ol>
<li class=""><strong>Endpoint URLs:</strong> move requests from <code>/gwas/rest/api/...</code> to the appropriate <code>/gwas/rest/api/v2/...</code> resource.</li>
<li class=""><strong>Search calls:</strong> replace <code>/search/findBy...</code> endpoints with v2 query parameters.</li>
<li class=""><strong>Parameter names:</strong> many v2 parameters use names such as <code>pubmed_id</code>, <code>accession_id</code>, <code>efo_trait</code> and <code>mapped_gene</code>.</li>
<li class=""><strong>Response parsing:</strong> do not assume v1 HAL <code>_embedded</code>, <code>_links</code> or projection structures will be present in the same form.</li>
<li class=""><strong>Gene searches:</strong> consider <code>extended_geneset=true</code> if you need behaviour equivalent to v1.</li>
<li class=""><strong>Trait searches:</strong> decide whether descendant ontology traits should be included.</li>
<li class=""><strong>Pagination:</strong> ensure your application follows paginated results.</li>
<li class=""><strong>Request rates:</strong> keep the documented 15-query-per-second limit in mind.</li>
<li class=""><strong>Data model:</strong> consider whether new resources such as publications, genes or ancestries provide a simpler way to perform queries that previously started from studies or SNPs.</li>
</ol>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="gwas-catalog-rest-api-v2-documentation">GWAS Catalog REST API v2 documentation<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-migration-guide#gwas-catalog-rest-api-v2-documentation" class="hash-link" aria-label="Direct link to GWAS Catalog REST API v2 documentation" title="Direct link to GWAS Catalog REST API v2 documentation" translate="no">​</a></h2>
<p>Read the <a href="https://www.ebi.ac.uk/gwas/docs/api" target="_blank" rel="noopener noreferrer" class="">GWAS Catalog API documentation</a> for the interactive reference, endpoints, schemas, parameters and syntax.</p>]]></content>
        <author>
            <name>Elizabeth Lewis</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Share your metadata and top associations]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/share-metadata-top-associations</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/share-metadata-top-associations"/>
        <updated>2026-06-12T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[The volume of GWAS data continues to grow rapidly, with the number of associations in the Catalog having now topped 1 million. It’s already possible to submit full genomewide summary statistics and metadata to the Catalog, either before or after journal publication, and these are prioritised for inclusion in the Catalog.]]></summary>
        <content type="html"><![CDATA[<p>GWAS data is growing rapidly, and the GWAS Catalog now includes more than 1 million associations. Authors can already submit full genome-wide summary statistics and metadata to the Catalog, and publications with submissions are prioritised for inclusion.</p>
<!-- -->
<p>For papers without submissions, our small team of biocurators manually extracts reported associations and metadata from GWAS publications. This careful work takes time, and we currently have a backlog of papers awaiting curation.</p>
<p>We know how important it is for your data to reach the community quickly. To help accelerate inclusion of new data in the Catalog, we are asking study authors to share metadata and top associations in a standardised format.</p>
<p>Authors contacted by the GWAS team are encouraged to review the checklist, submission guidelines and template before preparing their data. Providing data in a consistent format helps us to process the submission more efficiently, improve data quality, and reduce manual review time. This helps studies become available to the community faster, increasing their visibility and accessibility through the Catalog. As we are currently encouraging only a specific type of submission from external contributors, being contacted doesn’t guarantee that the study will be eligible for inclusion at this stage. All submissions will be checked and QC’d by our curation team before release.</p>
<p>Researchers who have not been contacted by the team but would like to contribute are also welcome to get in touch via the helpdesk, and we will guide you through the next steps. <strong>Please note - this is a separate process from submitting full genome-wide summary statistics - please don’t try to use our submission portal</strong>. Of course, if you are happy to submit full genome-wide summary statistics, we’d be very happy for you to do that as well!</p>
<p>As always, if you have any questions, please reach out to our helpdesk <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a>.</p>]]></content>
        <author>
            <name>GWAS Catalog</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Changes to associations tsv download file]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/association-file-update</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/association-file-update"/>
        <updated>2025-11-10T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[If you use the GWAS Catalog “All associations” tsv download file, you may have noticed we’ve made some changes.The GWAS Catalog recently passed an incredible milestone of >1m curated associations! This is a huge achievement for the genomics community. However, it presents challenges for some users in analysing the data, since the “All associations” file now has more]]></summary>
        <content type="html"><![CDATA[<p>If you use the GWAS Catalog “All associations” tsv download file, you may have noticed we’ve made some changes.</p>
<!-- -->
<p>The GWAS Catalog recently passed an incredible milestone of &gt;1m curated associations! This is a huge achievement for the genomics community. However, it presents challenges for some users in analysing the data, since the “All associations” file now has more than 1m rows.</p>
<p>You now have a choice of two formats for the v1 and v2 “all associations” files:</p>
<ol>
<li class="">File now provided as a compressed .zip; data format unchanged.</li>
<li class="">Data split into multiple smaller files, and compressed together. This split file is divided by publication year, with a separate file for each year from 2023 onwards, and pre-2023 data in a single file.</li>
</ol>
<p>The split file (2) facilitates analysis for users of Excel or other software which cannot handle &gt;1m rows. Please note that data may continue to be added for previous years - you are advised to always work with the latest version of the complete file set.</p>
<p>The files can be downloaded from the ftp links listed on the <a href="https://www.ebi.ac.uk/gwas/docs/file-downloads" target="_blank" rel="noopener noreferrer" class="">file downloads page</a>.</p>
<p>If you’re trying to download the file programmatically for processing, we advise you do so from our <a href="https://ftp.ebi.ac.uk/pub/databases/gwas/releases/latest/" target="_blank" rel="noopener noreferrer" class="">public FTP</a>. The previously available endpoint
ebi.ac.uk/gwas/api/search/downloads/full was intended for manual access and has been deprecated.</p>
<p>To access subsets of the data, e.g. all associations for a given trait (e.g. “cancer”), you’re advised to either:</p>
<ul>
<li class="">Use the website to navigate to your data type of interest and then click “download Catalog data” to download relevant associations</li>
<li class="">Use our recently updated <a href="https://www.ebi.ac.uk/gwas/rest/api/v2/docs" target="_blank" rel="noopener noreferrer" class="">REST API</a> for programmatic access</li>
</ul>
<p><em>Want to receive updates like this directly to your inbox? Sign up for our low-volume mailing list by sending an e-mail to <strong><a href="mailto:gwas-announce-join@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-announce-join@ebi.ac.uk</a></strong> with subject heading "subscribe"</em></p>]]></content>
        <author>
            <name>GWAS Catalog</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[The GWAS Catalog REST API Version 2.0 is here!]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-release</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/rest-api-v2-release"/>
        <updated>2025-08-11T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[The GWAS Catalog has released a completely redesigned REST API, supporting programmatic access to the curated data. Find out more about the new features and timeline for switching over.]]></summary>
        <content type="html"><![CDATA[<p>We’re pleased to announce the release of the GWAS Catalog REST API, Version 2.0!</p>
<!-- -->
<p>Supporting programmatic access to the GWAS Catalog’s curated dataset, the REST API has been completely redesigned based on user feedback, to facilitate a robust and resilient mechanism for delivering the growing volume of data. The new design aims to provide all the tools you need to perform complex queries and effectively integrate GWAS Catalog data services into your scientific pipelines, scripts, and web applications.</p>
<p>New endpoints (including publications, genes, genomic context, and ancestries), allow users to create previously complex queries in a dynamic and simple manner. More data is exposed such as cohorts, background traits, full free text sample description, terms/license and other fields, which were previously accessible only in the GUI and downloads. Ontology powered search functionality, more search and filtering features, and additional integrated data from other sources such as Ensembl help to provide a richer user experience.</p>
<p>We’ve also made technical improvements to increase resiliency and scaling, applying industry standard architectural standards.</p>
<p>Extensive documentation is available, including a detailed reference manual containing endpoints, schemas, parameters, syntax and more, and including a visual, interactive interface for exploring and testing the endpoints. If you’re new to programmatic analysis, you might like to check out our Jupyter notebook tutorial. To get started, please go to our <a href="https://www.ebi.ac.uk/gwas/docs/api" target="_blank" rel="noopener noreferrer" class="">documentation page</a> where you’ll find links to all of these.  The previous API version will be available alongside v2 until May 2026, so you’ll need to switch over your pipelines before then.</p>
<p>Thanks to all our testers and survey respondents, and a special thank you to our super-user Ramiro Magno, developer of the gwasrapidd package, for making this work possible!</p>
<p>As always, if you have any questions, please reach out to our helpdesk <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a>.</p>]]></content>
        <author>
            <name>Laura Harris</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Our new resource update paper is out in Nucleic Acids Research!]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/nar-resource-paper-2024</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/nar-resource-paper-2024"/>
        <updated>2024-11-20T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[We are very happy to announce the GWAS Catalog’s latest resource update paper in Nucleic Acids Research! We discuss standards for reusability, sustainability and diversity, new software features, and more....]]></summary>
        <content type="html"><![CDATA[<p><strong>We're happy to announce the GWAS Catalog’s <a href="https://academic.oup.com/nar/advance-article/doi/10.1093/nar/gkae1070/7893318" target="_blank" rel="noopener noreferrer" class="">latest resource update paper</a> in Nucleic Acids Research!</strong></p>
<!-- -->
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/graphical-abstract-51808b24d91d29f988c4ce2376cba61d.png" width="2250" height="900" class="img_ev3q"></p>
<p>Here’s a hint of what you can find inside:</p>
<p>The <strong>GWAS-SSF standard</strong> for full genome-wide summary statistics data and metadata has been fully implemented in our submission pipeline. More than 30k files have been submitted containing ALL mandatory data &amp; metadata fields, on top of 50k files in the previous format.  We’ve also scaled our <strong>harmonisation pipeline</strong> to keep up with the increased rate of data submission - now 92% of all summary statistics with the necessary data content have a <a href="https://www.ebi.ac.uk/gwas/docs/methods/summary-statistics#_directories" target="_blank" rel="noopener noreferrer" class="">harmonised version</a>  available.</p>
<p>We have seen a huge growth in <strong>molecular quantitative trait GWAS</strong> (proteomic, lipidomic &amp; metabolomic measurements) and are working with our colleagues at the Experimental Factor Ontology to improve mapping to chemical entities.
<img decoding="async" loading="lazy" alt="molecular-gwas" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/Fig1-cadb2763d15e82d8693256f2f64866f4.png" width="2122" height="994" class="img_ev3q"></p>
<p>New features enable faster page loading and allow you to easily find <strong>GxE studies</strong> in our website and download files, preparing the way for anticipated growth in GxE data is anticipated to grow as the scale of exposome data expands. Thanks to funding from the <a href="https://www.embl.org/about/info/human-ecosystems/" target="_blank" rel="noopener noreferrer" class="">Human Ecosystems Transversal Theme</a> at EMBL-EBI to enable this new feature!
<img decoding="async" loading="lazy" alt="gwas-catalog-new-software" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/Fig2-d36e9b15f96f0fc0731f24958ab0b4ac.png" width="2708" height="1184" class="img_ev3q"></p>
<p>The <strong>lack of diversity</strong> in genomics data continues to be an issue. We share our thoughts on how to enable monitoring of diversity and inclusion in GWAS studies while taking care that the <strong>language</strong> we use to describe populations does not lead to misuse. <a href="https://www.ebi.ac.uk/gwas/population-descriptors" target="_blank" rel="noopener noreferrer" class="">New documentation and terminology</a> (labels instead of categories) guide our users towards correct interpretation.
Our analysis found that only around 50% of GWAS samples reported in the literature are being defined by genetic similarity measures, of those less than half clearly described a reference panel.<br>
<img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SupFig3-e569f0101b1e1ceb36970b31323f47fe.png" width="4000" height="2250" class="img_ev3q"></p>
<p>UKB is still the most used cohort in GWAS, accounting for around 30% of all studies in the Catalog! Unfortunately 70% of these restrict analysis to samples with the European population label, losing a significant amount of diversity. New inclusion of <strong>cohort</strong> names in Catalog data now enables this analysis, and in future linking out to rich cohort metadata.
<img decoding="async" loading="lazy" alt="gwas-catalog-diversity" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/Fig3-2f108f4b7fabc42e48ece2c63be88efa.png" width="1770" height="1006" class="img_ev3q"></p>
<p>Finally, we are now recognised as a <a href="https://globalbiodata.org/what-we-do/global-core-biodata-resources/list-of-current-global-core-biodata-resources/" target="_blank" rel="noopener noreferrer" class="">Global Biodata Core Resource</a> and <a href="https://elixir-europe.org/platforms/data/core-data-resources" target="_blank" rel="noopener noreferrer" class="">Elixir Core Data resource</a>!
<img decoding="async" loading="lazy" alt="gwas-catalog-diversity" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/core-resources-e78bb2a33bf0f9828d55c6dae63ff52a.png" width="2758" height="1018" class="img_ev3q"></p>
<p>Read the full article, <em><a href="https://academic.oup.com/nar/advance-article/doi/10.1093/nar/gkae1070/7893318" target="_blank" rel="noopener noreferrer" class="">Cerezo et al 2024</a></em>, open access at NAR.</p>
<p>Comments, feedback…? Contact us via <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a></p>]]></content>
        <author>
            <name>GWAS Catalog team</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Streamlining GWAS Summary Statistics Data Interpretation with Improved YAML Metadata]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/streamlining-GWAS-Summary-Statistics-Data-Interpretation-with-Improved-YAML-Metadata</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/streamlining-GWAS-Summary-Statistics-Data-Interpretation-with-Improved-YAML-Metadata"/>
        <updated>2024-02-22T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Having clear and accessible metadata is essential for enhancing data interpretation and ensuring its reusability. In the case of Genome-Wide Association Studies (GWAS), having a standardized and easy-to-understand format for documenting study metadata is crucial. In the GWAS Catalog, metadata associated with full genome-wide summary statistics files is accessible via multiple routes - searchable in the main Catalog via the website and REST API,]]></summary>
        <content type="html"><![CDATA[<p>Having clear and accessible metadata is essential for enhancing data interpretation and ensuring its reusability. In the case of Genome-Wide Association Studies (GWAS), having a standardized and easy-to-understand format for documenting study metadata is crucial. In the GWAS Catalog, metadata associated with full genome-wide summary statistics files is accessible via multiple routes - searchable in the main Catalog via the website and REST API, and additionally via a text file in YAML format, contained in the same directory as the data file.</p>
<!-- -->
<p>We have identified key fields that should be included in the metadata for a comprehensive understanding, interpretation, and subsequent reuse of GWAS studies. Mandatory fields document essential study details and optional fields cater to specific study designs (such as case/control counts in case-control studies), and provide supplementary analysis information. You can find detailed information about these fields in Table 1 and in our recent preprint (Hayhurst et al 2023 <a href="https://www.biorxiv.org/content/10.1101/2022.07.15.500230v4" target="_blank" rel="noopener noreferrer" class="">https://www.biorxiv.org/content/10.1101/2022.07.15.500230v4</a>).</p>
<p>In our latest release, we've introduced several updates to the GWAS metadata YAML file format. The YAML format, known it's user-friendliness, provides a combination of structured information and ease of use for humans and computers. The latest changes aim to enhance the human readability of the files with a clearer, more unambiguous, and user-friendly experience without compromising the file's compatibility with automated systems. Here’s an overview of the significant enhancements:</p>
<ol>
<li class="">Reordering and Grouping of Fields:</li>
</ol>
<ul>
<li class="">The fields within the YAML files have been reorganized and grouped by related topics, each marked with a group name starting with '#' (group names are listed in Table 1). This organization helps users to quickly locate specific fields by group name, such as '# Sample Information', making the file more navigable for humans. Importantly, this structural refinement does not affect the way machines parse and interpret the data.</li>
</ul>
<ol start="2">
<li class="">Clear Indentation for Hierarchical Relationships:</li>
</ol>
<ul>
<li class="">Indentation has been introduced to visually represent the relationships between different data fields. This visual aid improves the readability of the files, making it easier for users to discern the levels of data organization and relationships between various fields. In the meantime, this indentation does not impact the machine processing of the file.</li>
</ul>
<ol start="3">
<li class="">Renaming 'data_last_modified' to 'date_metadata_last_modified':</li>
</ol>
<ul>
<li class="">To provide clearer context, the 'data_last_modified' field has been renamed to 'date_metadata_last_modified'. This change emphasizes that the timestamp refers to the last modification date of the metadata, not the summary statistics data. It aids users in tracking any changes or updates in the metadata over time.</li>
</ul>
<ol start="4">
<li class="">Addition of 'Ancestry Category' Field:</li>
</ol>
<ul>
<li class="">We have introduced a new 'ancestry category' field in addition to the existing 'ancestry' field. This new feature provides a broad overview of the ancestry category that best describes the sample, allowing for a more generalized view of the sample's ancestry.  This new field also ensures consistency and facilitates comparative analysis across different studies, in line with the rest of the Catalog.</li>
</ul>
<p>These updates reflect our commitment to improving the user experience while ensuring the YAML files maintain their structural integrity for computer readability. Our focus continues to be on making GWAS metadata more accessible, interpretable, and useful for researchers.</p>
<p>Table 1. Metadata field definitions
<img decoding="async" loading="lazy" alt="Metadata field definitions" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/meta_yaml-4ce7209f16d0745f6ac17dce935efcac.png" width="1683" height="3050" class="img_ev3q"></p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="questions-and-feedback">Questions and feedback<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/streamlining-GWAS-Summary-Statistics-Data-Interpretation-with-Improved-YAML-Metadata#questions-and-feedback" class="hash-link" aria-label="Direct link to Questions and feedback" title="Direct link to Questions and feedback" translate="no">​</a></h2>
<p>Questions or comments about this change? Please contact us as <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a>.</p>]]></content>
        <author>
            <name>Yue Ji and Laura Harris</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Cohorts now available in the GWAS Catalog]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/cohorts-now-available</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/cohorts-now-available"/>
        <updated>2023-11-14T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[We are pleased to announce our latest data release includes a new version of the Catalog studies downloads containing additional fields describing the discovery stage (genome-wide) cohorts used in each study (see below for more details), and clearer information on the availability of full genomewide summary statistics.]]></summary>
        <content type="html"><![CDATA[<p>We are pleased to announce our latest data release includes a new version of the Catalog studies downloads containing additional fields describing the discovery stage (genome-wide) cohorts used in each study (see below for more details), and clearer information on the availability of full genomewide summary statistics.</p>
<!-- -->
<p>There are two new studies <a href="https://www.ebi.ac.uk/gwas/docs/file-downloads" target="_blank" rel="noopener noreferrer" class="">downloads</a> named as follows:</p>
<ul>
<li class="">gwas-catalog-studies_ontology-annotated_v1.0.2.1.tsv</li>
<li class="">gwas-catalog-download-studies-v1.0.3.1.tsv</li>
</ul>
<p>Versions 1.0.2 (gwas-catalog-studies_ontology-annotated.tsv) and 1.0.3 (gwas-catalog-download-studies-v1.0.3.tsv) of the studies downloads will be deprecated and cease to be generated on 1 December 2023.</p>
<p>The COHORT field describes the discovery stage (genome-wide) cohorts used in each study. Since we started piloting curation of cohort information in 2020, over 700 different discovery cohorts have been described in GWAS publications.</p>
<p>Cohort abbreviations from discovery stage GWAS either are extracted from the literature or supplied by sumitters, to match a predefined list which we share with the PGS Catalog.  The initial list of common cohorts used in genetics studies that seeded these annotations is from Mills &amp; Rahal, Communications Biology (2019), and has been expanded during our pilot phase.  A full list of the abbreviations and corresponding full cohort names in use is available to download separately (<a href="https://ftp.ebi.ac.uk/pub/databases/spot/pgs/metadata/pgs_all_metadata_cohorts.csv" target="_blank" rel="noopener noreferrer" class="">https://ftp.ebi.ac.uk/pub/databases/spot/pgs/metadata/pgs_all_metadata_cohorts.csv</a>). We share this list with the PGS Catalog, so you may find cohorts listed there that are not currently associated with a GWAS Catalog study.  It's important to remember we only extract cohorts when they have been clearly and unambiguously named by authors, so a cohort may have been used in other publications which don't have annotation.
Where a sample cohort in the literature was not already in the predefined list at the time of curation, or was ambiguously described, “other” will appear in our studies download file. Where a sample in the literature had no cohort reported, “NR” will appear in our studies download file. Consortium names are extracted if the component cohorts are not provided, or there are too many component cohorts to curate.  Empty cohort fields appear for studies curated before the pilot work to extract this information began (~2020).
We also accept submissions of unpublished data and these are listed in separate download files. Cohorts appearing in the unpublished download files are yet to undergo in-house curation and therefore may not exactly match against the predefined list.</p>
<p>Cohort data annotations for published studies are also now available via the REST API, accessible via the <code>/studies</code> and <code>/studies/{accessionId}</code> endpoints. The field is called <em>cohort</em>.</p>
<p>As well as cohort data, the new studies downloads also contain clear annotation of which studies have full genomewide summary statistics available for download in the column FULL SUMMARY STATISTICS with the ftp location available in the adjacent column SUMMARY STATS LOCATION.</p>
<p>We hope you make great use of these data! Questions? Feedback? Contact <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a></p>]]></content>
        <author>
            <name>GWAS Catalog team</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[GWAS Catalog web search - new release!]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ui-production-release-2023</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ui-production-release-2023"/>
        <updated>2023-07-12T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[We are pleased to announce the release of a new version of the GWAS Catalog web search interface, which is now in production. Here is a guide to the main differences you will see.]]></summary>
        <content type="html"><![CDATA[<p>We are excited to announce the full production release of the new GWAS Catalog web search interface.</p>
<!-- -->
<p>The biggest change we have made is to increase the loading speed of pages, to account for recent increases in data volume and ensure we are robust for future growth. Check out a high-level query like “cancer” for maximum effect!</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideA-9f8555a707c5b458740a6cccfafa98e3.jpg" width="720" height="405" class="img_ev3q"></p>
<p>We’ve also main some small changes to the layout of the data pages, with tabs for the different data facets (i.e. associations, studies, visualisations), so you don’t need to scroll to find your data of interest:</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideB-233d9732a6fbe5c2783e4596ae9b1a43.jpg" width="629" height="366" class="img_ev3q"></p>
<p>Interested to find studies with full genomewide summary statistics available for download? They now have their own tab, making it easier to see when summary statistics are available:</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideC-a9f8d8c2b0d8ff50e475346c4a021634.jpg" width="651" height="324" class="img_ev3q"></p>
<p>Interested to find the study with the biggest sample size for your trait of interest? Just use the sort option on the Discovery sample number columnn, which now sorts by the total number of samples in the Discovery stage, irrespective of ancestry groups:</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideD-762f9ac477160b028d48ed7dc031279d.jpg" width="1335" height="575" class="img_ev3q"></p>
<p>Hope you enjoy using the new features! Please report any bugs to <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a> or via <a href="https://github.com/EBISPOT/gwas-ui/issues" target="_blank" rel="noopener noreferrer" class="">GitHub</a></p>
<p>Lastly, watch this space for the next generation of the GWAS Diagram - we're working on it!</p>]]></content>
        <author>
            <name>GWAS Catalog team</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[GWAS Catalog web search updates - help us with testing]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ui-labs-release</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ui-labs-release"/>
        <updated>2023-05-05T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[We are pleased to announce the release of a new version of the GWAS Catalog web search interface, which is available for testing at www.ebi.ac.uk/gwas/labs. Here is a guide to the main differences you will see.]]></summary>
        <content type="html"><![CDATA[<p>We are excited to announce the release of a new version of the GWAS Catalog web search interface, which is available for testing on our <a href="https://www.ebi.ac.uk/gwas/labs" target="_blank" rel="noopener noreferrer" class="">labs site</a>.</p>
<!-- -->
<p>This is a guide to the main differences you will see.</p>
<p>The biggest change we have made is to increase the loading speed of pages, to account for recent increases in data volume and ensure we are robust for future growth. Check out a high-level query like “cancer” for maximum effect!</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideA-9f8555a707c5b458740a6cccfafa98e3.jpg" width="720" height="405" class="img_ev3q"></p>
<p>We’ve also changed the layout of the data pages, with tabs for the different data facets (i.e. associations, studies, visualisations), so you don’t need to scroll to find your data of interest:</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideB-233d9732a6fbe5c2783e4596ae9b1a43.jpg" width="629" height="366" class="img_ev3q"></p>
<p>Studies with full summary statistics available for download are now easier to find in their own tab:</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/SlideC-a9f8d8c2b0d8ff50e475346c4a021634.jpg" width="651" height="324" class="img_ev3q"></p>
<p>Please try out the new site and let us know what you like, what you don’t like, if you find any bugs or if any of your favourite features are missing. You can send feedback via <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a> or report bugs directly via <a href="https://github.com/EBISPOT/gwas-ui/issues" target="_blank" rel="noopener noreferrer" class="">GitHub</a></p>
<p>Lastly, note that links to the GWAS Diagram have been disabled in the labs site. We are working on the next generation of the Diagram and will share this with you soon!</p>]]></content>
        <author>
            <name>GWAS Catalog team</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[New submissions standard - release date]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release"/>
        <updated>2023-03-22T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Next month the GWAS Catalog is switching to a NEW summary statistics format. Find out more about what this means for submitters and consumers of summary statistics]]></summary>
        <content type="html"><![CDATA[<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="the-new-summary-statistics-format-is-coming---what-you-need-to-know">The new summary statistics format is coming - what you need to know<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release#the-new-summary-statistics-format-is-coming---what-you-need-to-know" class="hash-link" aria-label="Direct link to The new summary statistics format is coming - what you need to know" title="Direct link to The new summary statistics format is coming - what you need to know" translate="no">​</a></h2>
<p>From 12th April we are switching to our NEW summary statistics format, GWAS-SSF, an overview of which is described in our <a href="https://www.biorxiv.org/content/10.1101/2022.07.15.500230v2" target="_blank" rel="noopener noreferrer" class="">manuscript</a> and <a href="https://github.com/EBISPOT/gwas-summary-statistics-standard" target="_blank" rel="noopener noreferrer" class="">github repository</a>. There will be a short period of submission system downtime while we switch over to the new pipelines.</p>
<!-- -->
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="what-does-this-mean-for-you">What does this mean for you?<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release#what-does-this-mean-for-you" class="hash-link" aria-label="Direct link to What does this mean for you?" title="Direct link to What does this mean for you?" translate="no">​</a></h2>
<p>If you are a SUBMITTER of summary statistics, you will need to submit additional mandatory information, including effect size, allele frequency, and genomic location for each variant, and columns must be presented in a specific order. You are also encouraged to provide additional structured data (e.g. reference allele, imputation info score) and metadata (e.g. ancestry method, sex of participants) which will increase the usability of your data to others, and hopefully get you <a href="https://www.biorxiv.org/content/10.1101/2022.09.27.509657v2" target="_blank" rel="noopener noreferrer" class="">more citations</a>.</p>
<p>If you are a CONSUMER of summary statistics, you will start to see changes to the way we make these available. All newly submitted summary statistics will include the additional fields described <a href="https://github.com/EBISPOT/gwas-summary-statistics-standard" target="_blank" rel="noopener noreferrer" class="">here</a>, with metadata available in a text file (.yaml) stored in the same ftp location as the data file, as well as its existing availability via the GWAS Catalog website and downloads. Over the coming months, we will generate metadata files for all existing summary statistics.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="frequently-asked-questions">Frequently asked questions<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release#frequently-asked-questions" class="hash-link" aria-label="Direct link to Frequently asked questions" title="Direct link to Frequently asked questions" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="for-submitters">For submitters:<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release#for-submitters" class="hash-link" aria-label="Direct link to For submitters:" title="Direct link to For submitters:" translate="no">​</a></h3>
<p><strong>I’ve already started a submission and prepared my files in the old format. What should I do?</strong>
You can submit files in the old format until April 11th. If you are unable to complete your submission before this deadline, please contact us via <a href="mailto:gwas-subs@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-subs@ebi.ac.uk</a> for assistance.</p>
<p><strong>I submitted summary statistics in the old format a while back and they are under embargo or in pre-published state. Do I need to change anything?</strong>
No. Your data will be made available in the old format (upon journal publication, if embargoed), and the metadata file will be prepared from the information you submitted.</p>
<p><strong>I want to start preparing my submission now, but won’t be ready to submit till after April 12th. How can I find instructions on how to prepare the new format?</strong></p>
<p>Detailed documentation on the new format is available as follows:</p>
<ul>
<li class=""><a href="https://www.ebi.ac.uk/gwas/docs/gwas-ssf/summary-statistics-format" target="_blank" rel="noopener noreferrer" class="">Summary statistics data file preparation</a></li>
<li class=""><a href="https://www.ebi.ac.uk/gwas/docs/gwas-ssf/submission-summary-statistics-plus-metadata" target="_blank" rel="noopener noreferrer" class="">Submission instructions for summary statistics and sample metadata</a></li>
<li class=""><a href="https://www.ebi.ac.uk/gwas/docs/gwas-ssf/submission-summary-statistics" target="_blank" rel="noopener noreferrer" class="">Submission instructions for summary statistics only</a> (for publications with metadata already available in the GWAS Catalog).</li>
</ul>
<p>An example new-style metadata template is available to download <a href="http://ftp.ebi.ac.uk/pub/databases/gwas/sumstats_and_meta_submission_template_v1_11.xlsx" target="_blank" rel="noopener noreferrer" class="">here</a>
A recorded <a href="https://www.ebi.ac.uk/training/events/data-submission-genome-wide-association-studies-gwas-catalog/" target="_blank" rel="noopener noreferrer" class="">webinar</a> is available, describing the submission process and the new format.</p>
<p><strong>Are there tools available to help me prepare data in GWAS-SSF format?</strong>
You can find some useful tools to format your files and validate them prior to upload <a href="https://github.com/EBISPOT/gwas-sumstats-tools" target="_blank" rel="noopener noreferrer" class="">here</a>
PLINK 2.0 will shortly include an option to generate output in the accepted format, using the option --gwas-ssf.</p>
<p><strong>I made a submission in the old format but would like to update it to include the new fields. Can I do this?</strong>
At the moment our update process is manual and we don’t have capacity to update large numbers of files unless there is an error. We plan to improve this process in the future.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="for-consumers">For consumers:<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/gwas-ssf-release#for-consumers" class="hash-link" aria-label="Direct link to For consumers:" title="Direct link to For consumers:" translate="no">​</a></h3>
<p><strong>How can I tell if summary statistics are in the old or new format?</strong>
This is indicated in the metadata file. If a metadata file exists, and the field named “fileType” has the value “GWAS-SSF v1.0”, then the file is in the new GWAS-SSF format. Other values in this field indicate that it is not in the new GWAS-SSF format, and may be lacking mandatory fields. If no metadata file exists, the summary statistics are in the old format, or a non-standard format.</p>
<p><strong>How can I combine or compare new and old format summary statistics?</strong>
Data fields included in the old format (chromosome, base_pair_location, effect_allele, other_allele, effect_allele_frequency, odds_ratio, ci_lower, ci_upper, beta, standard_error) are the same in the new format. There are two exceptions:  variant_id and p_value. In the old format, variant_id contained rsIDs, whereas in the new format rsID has a separate column rsid, and variant_ID contains a variant identifier in the format chr_bp_ref_alt. In the old format, p_value was a mandatory field and could only contain p-values between 0 and 1. In the new format, p-values may be either presented in the p_value field OR as negative log10 p-values, with the header neg_log_10_p_value, but always in column 7.</p>
<p><strong>More questions?</strong> Get in touch: contact <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a> for general queries or <a href="mailto:gwas-subs@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-subs@ebi.ac.uk</a> for submission support</p>]]></content>
        <author>
            <name>GWAS Catalog team</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[A new standard for GWAS summary statistics]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/new-standard-for-gwas-summary-statistics</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/new-standard-for-gwas-summary-statistics"/>
        <updated>2022-07-20T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Today we are very pleased to share our manuscript describing a new standard format for GWAS summary statistics, GWAS-SSF. The work towards this goal began in 2017 when we began to host summary statistics in the GWAS Catalog. It rapidly became apparent that summary statistics were formatted in a whole host of different ways, with only a few features in common between them, and little has changed since, with a recent analysis of 327 summary statistics]]></summary>
        <content type="html"><![CDATA[<p>Today we are very pleased to share our manuscript describing a new standard format for GWAS summary statistics, <a href="https://www.biorxiv.org/content/10.1101/2022.07.15.500230v1" target="_blank" rel="noopener noreferrer" class="">GWAS-SSF</a>. The work towards this goal began in 2017 when we began to host summary statistics in the GWAS Catalog. It rapidly became apparent that summary statistics were formatted in a whole host of different ways, with only a few features in common between them, and little has changed since, with a <a href="https://academic.oup.com/bioinformatics/article/37/23/4593/6380562" target="_blank" rel="noopener noreferrer" class="">recent analysis</a> of 327 summary statistics files finding over 100 unique formats. We were about to launch the GWAS Catalog author submission system and needed to enforce a standard format as QC on submissions, and to ensure that submitted data could be passed through our harmonisation pipeline. So we quickly developed a <a href="https://pubmed.ncbi.nlm.nih.gov/30445434/" target="_blank" rel="noopener noreferrer" class="">minimal standard format</a> based on the most commonly included fields, with variant ID/genomic location and p-value as mandatory fields, and standard headers for other fields such as beta and CI. This was enough for our goal of getting data into the GWAS Catalog. But we heard many consumers of the data complain that datasets with the minimum mandatory fields did not meet their requirements, for example to use the data for Mendelian randomisation or to generate polygenic scores. We needed to encourage our submitters to share their data more fully. A second issue is that while the GWAS Catalog curates metadata from the literature, there is no standard for GWAS metadata reporting, resulting in missing data that limits re-use of the summary statistics.</p>
<!-- -->
<p>We started on a process of consulting with the community that began with our workshop on summary statistics data and sharing in 2020. This was a wide ranging discussion over 2 days that you can read all about in our <a href="https://www.sciencedirect.com/science/article/pii/S2666979X21000045" target="_blank" rel="noopener noreferrer" class="">workshop proceedings</a>. At the end of that process we had an outline of some mandatory fields for data and metadata, but refining these and ensuring they met all the major use cases would take a more focused discussion. Our working group on summary statistics data content and format, chaired by Ines Barroso, held 3 meetings over the course of 2021. We held a parallel working group to discuss diversity and privacy in data sharing (to be reported elsewhere) and incorporated their recommendations (for example on the sharing of allele frequency data) into our decision making process. Both the original workshop and the working group were designed to represent a wide range of stakeholders - from industry and academia, developers of other resources &amp; tools, data generators and data consumers, research groups primarily performing wet-lab research and high-throughput bioinformatics users. Our discussions focused on the need to enforce key mandatory fields to maximise the reuse of the data, but also to recognise that setting the bar too high could discourage data sharing. Similarly, data need to be made accessible in a way that suits the high-throughput user who might be piping data in bulk into a computational pipeline, but also users without advanced bioinformatics skills who might be downloading a single file to investigate a locus of interest. We heard that preparing data for submission to databases can be a huge drain for under-resourced labs, so needs to be as straightforward and user-friendly as possible, and that interoperability between different databases (such as <a href="https://www.ncbi.nlm.nih.gov/gap/" target="_blank" rel="noopener noreferrer" class="">dbGaP</a>, <a href="http://www.ebi.ac.uk/gwas" target="_blank" rel="noopener noreferrer" class="">the GWAS Catalog</a> and <a href="https://gwas.mrcieu.ac.uk/" target="_blank" rel="noopener noreferrer" class="">OpenGWAS</a>) is important to reduce the workload for data generators. You can read the outcome of our discussions in our <a href="https://biohackrxiv.org/7zxht" target="_blank" rel="noopener noreferrer" class="">new manuscript</a>. Behind the scenes, we are making the necessary changes to the GWAS Catalog infrastructure to validate new submissions according to the new standard and where possible, make all our existing summary statistics available in the new format. We are working on tools (together with PLINK and others) to make data preparation and formatting as easy as possible. In the meantime, we welcome feedback from the wider community on the standard and will collate this at the end of August prior to release of the new infrastructure.</p>
<p>The GWAS-SSF is suitable for array-based GWAS and single variant seqGWAS. As data sharing has become more widely accepted, there is appetite from the genomics community to share full p value datasets from gene-based analyses of sequencing data and CNVs. Whilst we don’t have a standard format for these yet, by gathering data we hope to go through a similar process to work towards a standard format. Please share your data, and let us know your thoughts!</p>]]></content>
        <author>
            <name>Laura Harris</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Trait annotation in the GWAS Catalog]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update"/>
        <updated>2021-08-03T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Each study in the GWAS Catalog investigates the association between variants in the human genome and a particular trait or phenotypic characteristic. For each study, we annotate the trait in two ways, a reported trait that reflects the author’s description of the disease or phenotypic characteristic under investigation. This is a free text description and sometimes.]]></summary>
        <content type="html"><![CDATA[<p>Each study in the GWAS Catalog investigates the association between variants in the human genome and a particular trait or phenotypic characteristic.</p>
<!-- -->
<p>For each study, we annotate the trait in two ways:</p>
<ol>
<li class="">
<p>A reported trait that reflects the author’s description of the disease or phenotypic characteristic under investigation. This is a free text description and sometimes different studies might use a different wording to describe similar traits or to capture more nuanced distinctions. Reported traits can also include multiple component traits, depending on the study design.</p>
</li>
<li class="">
<p>One or more trait terms from the Experimental Factor Ontology (EFO) that represent phenotypic characteristics in a more standardised way. These terms make studies on similar traits easier for users to find and compare. For multifaceted traits, each component is represented by a separate term.</p>
</li>
</ol>
<p><img decoding="async" loading="lazy" alt="Reported traits mapped to EFO terms" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/rep-trait-example-cf91908b2b9f8a842779db3053c22ea7.png" width="1770" height="354" class="img_ev3q"></p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="annotating-different-study-types">Annotating different study types<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#annotating-different-study-types" class="hash-link" aria-label="Direct link to Annotating different study types" title="Direct link to Annotating different study types" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="a-single-trait-studies">A. Single-trait studies<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#a-single-trait-studies" class="hash-link" aria-label="Direct link to A. Single-trait studies" title="Direct link to A. Single-trait studies" translate="no">​</a></h3>
<p>The vast majority (&gt;80%) of studies in the GWAS Catalog only analyse a single trait. We annotate these studies with a single EFO term.</p>
<p>Some common examples include:</p>
<ol>
<li class="">
<p>Standard case-control studies comparing individuals with a disease or phenotypic characteristic, versus controls individuals without that trait.
<img decoding="async" loading="lazy" alt="A case-control study with a single binary trait" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/eg-sg-trait-binary-d804f6029ea484f1ff65f29e64107056.png" width="1751" height="433" class="img_ev3q"></p>
</li>
<li class="">
<p>Quantitative studies looking at a single measurement
<img decoding="async" loading="lazy" alt="A quantitative study with a single continuous trait" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/eg-sg-trait-quant-b5689418abe129cca95b3b8b6be6527e.png" width="1749" height="432" class="img_ev3q"></p>
</li>
</ol>
<p>In these examples, any reported variants are clearly and straightforwardly associated with that single trait.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="b-multi-trait-studies">B. Multi-trait studies<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#b-multi-trait-studies" class="hash-link" aria-label="Direct link to B. Multi-trait studies" title="Direct link to B. Multi-trait studies" translate="no">​</a></h3>
<p>In about 10% of studies, there are multiple traits of interest that are analysed simultaneously. We annotate these studies with multiple EFO terms separated by a comma, indicating that any significant variants reported in the study are associated with both traits in some way.</p>
<p><strong>Some common examples include:</strong></p>
<ol>
<li class="">
<p>Studies comparing individuals with two comorbid diseases (or other traits), versus control individuals who have neither disease. In the reported trait we write “Disease 1 <em>and</em> Disease 2”. In the trait we list multiple EFO terms separated by a comma.
<img decoding="async" loading="lazy" alt="A case-control study where cases have two co-occuring traits" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/eg-multi-trait-and-a1c821113128f91c6828133b4a7913e7.png" width="1750" height="430" class="img_ev3q"></p>
</li>
<li class="">
<p>Studies comparing individuals with either of two diseases (or other traits), versus control individuals who have neither disease. Often these are two traits that are hypothesised to have some common underlying genetic factors (pleiotropy). In the reported trait we write “Disease 1 <em>or</em> Disease 2”. In the trait we list multiple EFO terms separated by a comma.
<img decoding="async" loading="lazy" alt="A case-control study where cases may have either of two distinct traits" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/eg-multi-trait-or-31b2140a8268d50beafafd578db51e4d.png" width="1750" height="431" class="img_ev3q"></p>
</li>
</ol>
<p>In these examples, any significant variants reported are associated with either or both of the annotated traits. If a user is searching for associations with either trait term, then these results will come up in their search.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="c-studies-with-a-background-trait">C. Studies with a background trait<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#c-studies-with-a-background-trait" class="hash-link" aria-label="Direct link to C. Studies with a background trait" title="Direct link to C. Studies with a background trait" translate="no">​</a></h3>
<p>Finally, about 6% of studies analyse only one main trait of interest, but in the context of a background trait that is shared by all of the participants in the study.</p>
<p>Some examples include:</p>
<ol>
<li class="">
<p>Studies comparing cases and controls of one disease, but only within a sample of people who have another disease. In the reported trait we write “Disease 1 <em>in</em> Disease 2”. In the past, we listed multiple EFO terms in the trait column, as for scenario B.
<img decoding="async" loading="lazy" alt="A case-control study for one binary trait within a second background trait" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/eg-bg-trait-binary-e49780c308731c2cb06c8f21f79bdf5a.png" width="1750" height="431" class="img_ev3q"></p>
</li>
<li class="">
<p>Quantitative studies analysing a measurement in the context of a disease. In the reported trait we write “Measurement <em>in</em> Disease”. In the past, we listed multiple EFO terms in the trait column, as for scenario B.
<img decoding="async" loading="lazy" alt="A quantitative study for one continuous trait within a second background trait" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/eg-bg-trait-quant-bc8149d6dcadbd88d3cb99c07cae4e25.png" width="1751" height="434" class="img_ev3q"></p>
</li>
</ol>
<p>In these examples, any reported variants are associated with the main trait, but not with the background trait.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="room-for-improvement">Room for improvement<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#room-for-improvement" class="hash-link" aria-label="Direct link to Room for improvement" title="Direct link to Room for improvement" translate="no">​</a></h2>
<p>In the past, we annotated background trait studies (scenario C) in the same way as we have for multi-trait studies (scenario B): with multiple EFO terms listed together in the trait field, separated by commas.</p>
<p>This had some benefits:</p>
<ul>
<li class="">
<p>We were able to indicate that the study has something to do with the background trait - e.g. a particular association with allergic rhinitis may only hold true in asthmatics.</p>
</li>
<li class="">
<p>Users could search for associations with a trait, as well as associations that are found in the context of that trait as a background characteristic. Both kinds of associations might be relevant to users working in a particular field.</p>
</li>
</ul>
<p>However, there were some are also some disadvantages:</p>
<ul>
<li class="">
<p>It was not possible to tell that a particular EFO term was a background trait, without looking at the reported trait field. This complicated analysis particularly when accessing the data programmatically.</p>
</li>
<li class="">
<p>When searching for a trait term (e.g. asthma), there was no easy way to distinguish which studies were direct associations with asthma, and which have asthma as the background trait, without reading the reported trait for each one.</p>
</li>
<li class="">
<p>The overall study and association numbers provided for some traits could be misleading since they included studies and associations where the trait of interest was a background trait.</p>
</li>
</ul>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="changes-to-trait-annotation">Changes to trait annotation<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#changes-to-trait-annotation" class="hash-link" aria-label="Direct link to Changes to trait annotation" title="Direct link to Changes to trait annotation" translate="no">​</a></h2>
<p>To make our trait annotations more informative, we have added an additional background trait field to the GWAS Catalog database.</p>
<p>We have moved all EFO terms related to background traits to this new field, and removed them from the original trait field:
<img decoding="async" loading="lazy" alt="We have moved EFO terms for background traits to a separate field" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/annotation-change-506b15754f04b4dee58b8c042690d26f.png" width="1701" height="223" class="img_ev3q"></p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="changes-to-the-website">Changes to the website<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#changes-to-the-website" class="hash-link" aria-label="Direct link to Changes to the website" title="Direct link to Changes to the website" translate="no">​</a></h2>
<p>We have also updated our web interface in order to display the restructured background trait information.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="data-tables">Data tables<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#data-tables" class="hash-link" aria-label="Direct link to Data tables" title="Direct link to Data tables" translate="no">​</a></h3>
<p>New columns have been added to the Associations and Studies tables to clearly indicate the main and background traits.</p>
<p>Associations:
<img decoding="async" loading="lazy" alt="Separate main and background traits displayed in Associations table" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/new-assoc-table-0a61262dd9b974dc6ebfdfde628b2fe7.png" width="1434" height="195" class="img_ev3q"></p>
<p>Studies:
<img decoding="async" loading="lazy" alt="Separate main and background traits displayed in Studies table" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/new-study-table-4a221d4bb7a5c87a7f16471051be4276.png" width="1181" height="242" class="img_ev3q"></p>
<p>The improved tables will be displayed on all Publication, Study, Trait, Variant, Gene and Region pages.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="study-pages">Study pages<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#study-pages" class="hash-link" aria-label="Direct link to Study pages" title="Direct link to Study pages" translate="no">​</a></h3>
<p>Each Study page also displays the main and background traits in separate fields in the Study Information panel.
<img decoding="async" loading="lazy" alt="Main and background traits displayed in the Study Information panel" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/study-info-panel-7e3bbb8c97dc1389fa1e43f7e9c0921c.png" width="965" height="186" class="img_ev3q"></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="trait-pages">Trait pages<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#trait-pages" class="hash-link" aria-label="Direct link to Trait pages" title="Direct link to Trait pages" translate="no">​</a></h3>
<p>The Trait page has been updated so that background trait studies and associations are no longer shown by default. For example, the asthma page only shows associations with asthma itself, and not associations with others traits in asthma.
<img decoding="async" loading="lazy" alt="Asthma Trait page showing associations with asthma only" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/asthma-no-bg-a681b69979e4fe19a26aada085457675.png" width="695" height="162" class="img_ev3q"></p>
<p><em>Shows associations with:</em></p>
<ul>
<li class="">asthma</li>
<li class=""><del>[other traits] <em>in</em> asthma</del></li>
</ul>
<p>However, users can select the box to include background trait data if they wish:
<img decoding="async" loading="lazy" alt="Asthma Trait page showing associations with asthma AND with other traits in a background of asthma." src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/asthma-with-bg-5dbb4ca513bffb6e8c62c048b36a5b55.png" width="696" height="156" class="img_ev3q"></p>
<p><em>Shows associations with:</em></p>
<ul>
<li class="">asthma</li>
<li class="">[other traits] <em>in</em> asthma</li>
</ul>
<p>Some trait terms may only be used in the GWAS Catalog to annotate background traits. These terms will continue to have their own Trait page, but no associations or studies will be displayed under the default view. For example, autoimmune pancreatitis type 1 (EFO_1000780) currently appears in the Catalog only as a background trait for one study (“Lachrymal/Salivary gland lesion in type 1 autoimmune pancreatitis”), so no associations with autoimmune pancreatitis type 1  are displayed by default:
<img decoding="async" loading="lazy" alt="A Trait page with no main trait associations" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/no-records-19af41102cfc09b87a52704e3ac5d372.png" width="1341" height="507" class="img_ev3q"></p>
<p>The association plot on each Trait page will now display only main trait associations by default, but background trait data can be added by selecting the box:
<img decoding="async" loading="lazy" alt="Association plot with with or without background trait data" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/assoc-plot-change-bc7e1a73a885ecebf24e31196f47ce44.png" width="1531" height="660" class="img_ev3q"></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="downloads">Downloads<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#downloads" class="hash-link" aria-label="Direct link to Downloads" title="Direct link to Downloads" translate="no">​</a></h3>
<p>In <a href="http://www.ebi.ac.uk/gwas/docs/file-downloads" target="_blank" rel="noopener noreferrer" class="">the full Catalog downloads</a>, the MAPPED_TRAIT and MAPPED_TRAIT_URI columns will now only show EFO terms for main traits. Background trait terms have been removed from these columns.</p>
<p>In the newest version of the download (v1.0.3), new columns have been added for the background trait: MAPPED BACKGROUND TRAIT and MAPPED BACKGROUND TRAIT URI. This is not included in earlier versions of the download.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="api">API<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#api" class="hash-link" aria-label="Direct link to API" title="Direct link to API" translate="no">​</a></h3>
<p>For users of the GWAS Catalog API, searching for “associationByEfoTrait” will now return only main trait associations.</p>
<p>There is currently no background trait field available in the API, but we plan to add this feature in the future.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="expected-scope-of-the-changes">Expected scope of the changes<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#expected-scope-of-the-changes" class="hash-link" aria-label="Direct link to Expected scope of the changes" title="Direct link to Expected scope of the changes" translate="no">​</a></h2>
<p>We reviewed all of the studies in the Catalog and identified just over 1000 studies (about 6% of the total) with background traits that have now been moved to the new field. These studies contain around 10,000 associations (about 4% of all associations in the Catalog) which have also been reannotated.</p>
<p>The changes affect some trait terms more than others. Here are some of the terms that will see the greatest change in the number of annotated Associations:
<img decoding="async" loading="lazy" alt="Graph of selected trait terms affected by this change" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/most-affected-traits-7cf1fa6c3253e101f0625a607be14c31.png" width="819" height="363" class="img_ev3q"></p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="questions-and-feedback">Questions and feedback<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/background-trait-update#questions-and-feedback" class="hash-link" aria-label="Direct link to Questions and feedback" title="Direct link to Questions and feedback" translate="no">​</a></h2>
<p>If you have any questions or comments about this change, please contact us as <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">gwas-info@ebi.ac.uk</a>.</p>]]></content>
        <author>
            <name>Elliot Sollis</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Sharing is caring, why we need more freely available cancer GWAS summary statistics]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/open-sharing-of-cancer-summary-statistics</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/open-sharing-of-cancer-summary-statistics"/>
        <updated>2021-03-11T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[The NHGRI-EBI GWAS Catalog is a central resource for the Genome Wide Association Study (GWAS) community, demonstrating the benefit of expert data curation and integration of full p-value GWAS summary statistics into a central repository for variant-trait associations. For more than 10 years, the Catalog has aimed to make GWAS data FAIR (Findable, Accessible, Interoperable and Re-usable)]]></summary>
        <content type="html"><![CDATA[<p>The <a href="https://www.ebi.ac.uk/gwas/" target="_blank" rel="noopener noreferrer" class="">NHGRI-EBI GWAS Catalog</a> is a central resource for the Genome Wides Association Study (GWAS) community, demonstrating the benefit of expert data curation and integration of full p-value GWAS summary statistics into a central repository for variant-trait associations.</p>
<!-- -->
<p>For more than 10 years, the Catalog has aimed to make GWAS data FAIR (Findable, Accessible, Interoperable and Re-usable), while serving as a starting point for investigations to identify causal variants, calculate disease risk, understand disease mechanisms and establish targets for novel therapies.</p>
<p>Here we aim to illuminate progress that has been made to incorporate GWAS summary statistics into the GWAS Catalog, and reach out to the cancer genetics community in particular to promote submission of summary statistics for GWAS studies in cancer cohorts.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="the-gwas-catalog-summary-statistics-repository">The GWAS Catalog summary statistics repository<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/open-sharing-of-cancer-summary-statistics#the-gwas-catalog-summary-statistics-repository" class="hash-link" aria-label="Direct link to The GWAS Catalog summary statistics repository" title="Direct link to The GWAS Catalog summary statistics repository" translate="no">​</a></h3>
<p>Three years ago, the GWAS Catalog and Open Targets started to work together to expand the Catalog’s scientific scope to include full p-value summary statistics (aggregate p-values and association data for every variant analysed in a genome-wide association study) in addition to the manually curated top associations.</p>
<p>Summary statistics provide more detailed GWAS results than a lead SNP table, which allows other scientists to better use the data for sophisticated downstream analysis, whilst maintaining patient privacy. For example, summary statistics are integrated into the Open Targets Genetics Portal, where they are used to narrow down candidate loci and prioritise new drug targets through PheWAS, colocalisation analysis, fine mapping and mendelian randomisation</p>
<p>[GWAS-catalog-statistics-1.png</p>
<p>The GWAS Catalog is now one of the largest, most visited and most frequently updated resources of freely available GWAS summary statistics. The repository includes summary statistics from 3,623 independent analyses (from 447 publications), accounting for a total of more than 22,000 datasets from a wide variety of traits. The Catalog users can easily access and download summary statistics from the GWAS Catalog <a href="ftp://ftp.ebi.ac.uk/pub/databases/gwas/summary_statistics/" target="_blank" rel="noopener noreferrer" class="">FTP site</a> or via a dedicated <a href="https://www.ebi.ac.uk/gwas/summary-statistics/docs/" target="_blank" rel="noopener noreferrer" class="">summary statistics API</a>.</p>
<p>The increasing trend to share these datasets is reflected in the availability of summary statistics in the GWAS Catalog over time. There was also a significant increase in data downloads of summary statistics in 2020 compared to the previous year.</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/GWAS-Catalog-Fig-1a-V2-6ef246d1220517fa04aee7c0178f1505.png" width="840" height="273" class="img_ev3q"></p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/GWAS-Catalog-Fig-1b-V2-2-013c3b165241be733f63f412212817b2.png" width="840" height="311" class="img_ev3q"></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="why-are-few-open-access-cancer-gwas-summary-statistics-available">Why are few open access cancer GWAS summary statistics available?<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/open-sharing-of-cancer-summary-statistics#why-are-few-open-access-cancer-gwas-summary-statistics-available" class="hash-link" aria-label="Direct link to Why are few open access cancer GWAS summary statistics available?" title="Direct link to Why are few open access cancer GWAS summary statistics available?" translate="no">​</a></h3>
<p>This expansion of the GWAS Catalog summary statistics repository, while promising, required a considerable outreach effort from the Catalog data team and the main stakeholders, including Open Targets. Interestingly, the rate of summary statistics data sharing noticeably differs among different genetics cohorts and research groups, with the lowest submission rate in cancer genetics.</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/GWAS-Catalog-FIg-2a-new-data-082dd1a843d6be1551865e4da9372aae.png" width="840" height="600" class="img_ev3q"></p>
<p>For example 33% of epilepsy and 21% of diabetes summary statistics are publicly available, compared to only 7.5% for cancer. The trend slightly differs amongst different cancer groups, and we have observed a more positive trend for the few papers published in the last two years.</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/GWAS-Catalog-2b-c-1-36caefdcbc417b6fd9438165f75cee0c.png" width="840" height="457" class="img_ev3q"></p>
<p>In a recent <a href="https://twitter.com/GWASCatalog/status/1365359253175881742" target="_blank" rel="noopener noreferrer" class="">Twitter poll</a>, we asked the community to tell us what they thought was the most important reason for the low rate of cancer summary statistics submission.</p>
<p>The results suggest that the main barriers to the sharing of summary statistics are:</p>
<ol>
<li class="">Results are usually embargoed for use in future research,</li>
<li class="">Data privacy issues (e.g. patient confidentiality agreement), and</li>
<li class="">Lack of awareness/knowledge on the appropriate data repository.</li>
</ol>
<p>We believe it is necessary for the genetics community to have a more comprehensive and transparent discussion about such barriers, starting from the privacy issues. As highlighted in the recently revised <a href="https://osp.od.nih.gov/2018/11/01/provide-access-gsr/" target="_blank" rel="noopener noreferrer" class="">NIH genomic data sharing (GDS) policy</a>, summary statistics do not include individual-level information and can empower researchers to determine which genomic variants potentially contribute to a disease</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="how-can-we-promote-sharing">How can we promote sharing?<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/open-sharing-of-cancer-summary-statistics#how-can-we-promote-sharing" class="hash-link" aria-label="Direct link to How can we promote sharing?" title="Direct link to How can we promote sharing?" translate="no">​</a></h3>
<p>As a part of a wider plan to identify and remove barriers to data sharing among different research communities, we have launched a dedicated public engagement campaign to motivate and encourage the genetics community to make their summary statistics publicly available – and make the difference in the field. In particular, following up from a pressing request from our users and stakeholders, we hope to understand the reasons why so few summary statistics are available for cancer studies. Open sharing of cancer GWAS data will lead the way to new, improved therapies and shed some light on the molecular mechanisms involved in such complex disease.</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/GWAS-Catalog-quote-68ffcc78ccb7f1d79afde6c625b9202f.png" width="840" height="415" class="img_ev3q"></p>
<p>We call on researchers, journals, funders and charities to support our cause and spread our message. The Nature Journals Group are already proactively supporting an open access policy for their published cancer GWAS data. We hope to get more journals on board, including the top cancer journals.</p>
<p>In an aim to facilitate data sharing and interoperability, the GWAS Catalog team has recently released a <a href="https://www.ebi.ac.uk/gwas/deposition" target="_blank" rel="noopener noreferrer" class="">web-based deposition interface</a> to support scalable author submission of summary statistics and metadata from published and pre-published (submitted at the time of journal submission upon request from the reviewers) GWAS. The datasets are submitted in a standard format and harmonised against the latest genome build and forward strand. This facilitates downstream analysis and integration into resources like the Open Targets Genetics.</p>
<p>Please submit your summary statistics to the GWAS Catalog.</p>
<p>What do you think are the most important barriers to the open sharing of summary statistics in cancer studies? Please let us know your thoughts by completing <a href="https://docs.google.com/forms/d/e/1FAIpQLSfuAO-cZWdIm8aF0140QXsZOxVlw7gLKj1a__KZ3aF4CUNamQ/viewform?usp=sf_link" target="_blank" rel="noopener noreferrer" class="">this short survey</a>.</p>
<p>You can also reach out to us via <a href="https://twitter.com/GWASCatalog" target="_blank" rel="noopener noreferrer" class="">Twitter (@GWASCatalog)</a> or <a href="mailto:gwas-info@ebi.ac.uk" target="_blank" rel="noopener noreferrer" class="">email (gwas-info@ebi.ac.uk)</a>.</p>
<p>Together, we can make the difference.</p>]]></content>
        <author>
            <name>Annalisa Buniello</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Ten years of the GWAS Catalog – Past, present and future]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/ten-years-of-the-gwas-catalog-past-present-and-future</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/ten-years-of-the-gwas-catalog-past-present-and-future"/>
        <updated>2018-06-28T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[This year marks a special anniversary for the GWAS Catalog, as we have reached ten years since our launch in 2008. The GWAS Catalog is a widely used publicly available resource of all published human genome wide association studies (GWAS) and association results. Each GWAS study contains a wealth of information which is effectively inaccessible to researchers]]></summary>
        <content type="html"><![CDATA[<p>This year marks a special anniversary for the <a href="https://www.ebi.ac.uk/gwas/" target="_blank" rel="noopener noreferrer" class="">GWAS Catalog</a>, as we have reached ten years since our launch in 2008. The GWAS Catalog is a widely used publicly available resource of all published human genome wide association studies (GWAS) and association results. Each GWAS study contains a wealth of information which is effectively inaccessible to researchers and clinicians without them spending a lot of time undertaking regular systematic reviews of the literature. This is where we can help you!</p>
<!-- -->
<p>The project is a collaboration between <a href="https://www.genome.gov/" target="_blank" rel="noopener noreferrer" class="">the National Human Genome Research Institute (NHGRI)</a> in Bethesda, Maryland, USA, and the European Molecular Biology Laboratory – <a href="https://www.ebi.ac.uk/" target="_blank" rel="noopener noreferrer" class="">European Bioinformatics Institute (EMBL-EBI)</a> in Hinxton, UK, where the majority of our curators and all of our software developers are based</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/GWAS-catalog_EBI_group-768x576-fe7b2d6558e977e861c699eb5b9b5b95.png" width="768" height="576" class="img_ev3q"></p>
<p>At EMBL-EBI, we share the building with <a href="https://www.ensembl.org/index.html" target="_blank" rel="noopener noreferrer" class="">the Ensembl team</a> and work very closely with them – which is very handy for both teams!</p>
<p>Our curators extract genotype-phenotype associations from all published GWAS studies, along with study information to allow you to interpret the data accurately. We make the data structured, searchable and visualisable, annotate it and integrate it with other resources including Ensembl. Each association with a standard variant identifier (rsID) enters our automated Ensembl mapping pipeline which provides the genomic annotation, i.e. the location on the chromosome and cytogenetic band as well as the mapped genes. We use this pipeline to check for errors as part of our quality control and display the information in our interface.</p>
<p>Our colleagues at Ensembl benefit from the GWAS Catalog as they import variant and phenotype data from it. <a href="http://www.ensembl.org/info/genome/variation/species/sources_documentation.html" target="_blank" rel="noopener noreferrer" class="">More than 74,000 human variants associated with phenotype data from the GWAS catalog were included in the latest Ensembl release (e92)</a>; and the number is increasing continuously!</p>
<iframe width="100%" height="500" src="https://www.youtube.com/embed/2HEPTNFxQ5E" title="GWAS Catalog diagram slideshow" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
<p>Over the last ten years, the GWAS Catalog has grown, from a single published GWAS on age-related macular degeneration, into the primary source of disease-related associations with genetic variants. Watch how the number of associations has increased over time in this video!</p>
<p>Today, the GWAS Catalog contains over 3,400 publications and over 62,000 unique SNP-trait associations. More than 10,000 visitors from around the globe access the GWAS Catalog per month. People using the resource have a wide range of goals – they include researchers wanting to narrow down or prioritise candidate loci, scientists investigating disease mechanisms, clinicians aiming to predict disease risk, pharma industry professionals improving the drug discovery process and anyone wanting to get the latest statistics on disease knowledge or summary data from particular populations of individuals.</p>
<p>The GWAS landscape has evolved over these ten years, with new developments in study design and genotyping technologies. More and more publications on GWAS come out each month. Often a publication contains more than one GWAS – sometimes there are over a thousand in a single paper! The number of individuals studied in a GWAS is also increasing, and so is the number of variants assayed, with bigger arrays and better imputation methods.</p>
<p>The nature of the traits studied is evolving too. Researchers are still publishing GWAS on major common diseases such as type 2 diabetes and breast cancer. However, these studies are now being published alongside studies on ever more specific traits. For example, <a href="https://www.ebi.ac.uk/gwas/search?query=schizophrenia" target="_blank" rel="noopener noreferrer" class="">searching the GWAS Catalog for “schizophrenia”</a> brings up more than 50 different traits related to this disorder. These include sub-phenotypes such as specific symptoms in schizophrenia, endophenotypes such as brain imaging measurements, multi-trait analyses such as “schizophrenia and bipolar disorder”, drug response measurements as well as analyses of the interaction between genetic associations and environmental factors.</p>
<p>All of this means more data to curate. We are adapting our infrastructure constantly to improve curation efficiency so that we can keep up with the rate of data generation. At the same time, we need to maintain the accuracy of the resource and make sure it contains the most relevant and up-to-date research results.</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/fig2-f8588c0d3dd0d2893574920ca1291172.png" width="673" height="725" class="img_ev3q"></p>
<p>Highlights over the last ten years include releasing a new <a href="https://www.ebi.ac.uk/gwas/" target="_blank" rel="noopener noreferrer" class="">GWAS Catalog website</a> in 2015, <a href="https://www.ebi.ac.uk/gwas/docs/ontology" target="_blank" rel="noopener noreferrer" class="">mapping curated trait descriptions to ontology terms</a> to enable enriched ontology-driven search capabilities, improving the interactive <a href="https://www.ebi.ac.uk/gwas/diagram" target="_blank" rel="noopener noreferrer" class="">GWAS Catalog diagram</a> and <a href="https://www.ebi.ac.uk/gwas/ancestry" target="_blank" rel="noopener noreferrer" class="">capturing ancestry more completely</a>. Accurate characterisation of ancestry is essential to interpret human genomics data. Recently, we have developed a new framework for describing detailed ancestry information and recommendations for reporting ancestry systematically <a href="https://europepmc.org/abstract/MED/29448949" target="_blank" rel="noopener noreferrer" class="">Morales et al. (2018), <em>Genome Biology</em>, 19:2</a>.</p>
<p>So what will the future hold for the GWAS Catalog? We have just started hosting <a href="https://www.ebi.ac.uk/gwas/downloads/summary-statistics" target="_blank" rel="noopener noreferrer" class="">summary statistics for studies in the GWAS Catalog</a> with support from the scientific community (the files contain the full set of p values for every SNP on the array used). In the future we plan to integrate these datasets with structured meta-data to make it even easier to access GWAS results. We also aim to expand our scope to include other types of association analyses, including targeted arrays and sequencing-based genotyping, which enable deeper interrogation of diseases of interest and inclusion of less common variants.</p>
<p>With these developments come many challenges, including how best to represent the increasing complexity of study designs, trait architecture and statistical analyses. But with the help of the authors of publications in the GWAS Catalog, the scientific community using our resource and our colleagues at Ensembl, we are excited about what the next ten years of GWAS will hold!</p>]]></content>
        <author>
            <name>Laura Harris (GWAS Catalog) and Astrid Gall (Ensembl Outreach)</name>
        </author>
    </entry>
    <entry>
        <title type="html"><![CDATA[Everything you need to know about the new GWAS Catalog]]></title>
        <id>http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/everything-you-need-to-know-about-the-new-gwas-catalog</id>
        <link href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/everything-you-need-to-know-about-the-new-gwas-catalog"/>
        <updated>2018-06-13T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Genetic evidence could double the rate of success in drug targets identification - so the scientific community predicts. With this in mind, it is crucial for Open Targets to be able to feed as many SNP-trait associations as possible into its pipeline for systematic target identification and validation.]]></summary>
        <content type="html"><![CDATA[<p>Genetic evidence could double the rate of success in drug targets identification - so the scientific community predicts. With this in mind, it is crucial for Open Targets to be able to feed as many SNP-trait associations as possible into its pipeline for systematic target identification and validation.</p>
<!-- -->
<p>The NHGRI-EBI GWAS Catalog, an awesome public resource of human genotype-phenotype associations from published GWAS analyses, is one of the data sources for manually curated genetic evidence for the Open Targets Platform. The GWAS Catalog data is widely used to prioritise new candidate loci, predict disease risk and understand disease mechanisms, with a number of users and applications that is always increasing.</p>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/FINAL_USERS_withOT-2-9bbf5aa9f76544a0e6036ba03e769a12.png" width="840" height="564" class="img_ev3q"></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="new-and-expanded-gwas-catalog-to-improve-target-identification">New and expanded GWAS Catalog to improve target identification<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/everything-you-need-to-know-about-the-new-gwas-catalog#new-and-expanded-gwas-catalog-to-improve-target-identification" class="hash-link" aria-label="Direct link to New and expanded GWAS Catalog to improve target identification" title="Direct link to New and expanded GWAS Catalog to improve target identification" translate="no">​</a></h3>
<p>I am happy to announce an expansion of the GWAS Catalog scientific scope to host non genome-wide studies. During its first 10 years of life, in fact, the GWAS Catalog has only included array studies with genome-wide coverage, therefore curation of exome and targeted array studies were outside its scientific scope. These data are however valuable to Open Targets’ scientific goals of target identification and prioritisation, so much so they decided to invest in a new project aiming to expand the scope of the Catalog to include targeted arrays, such as MetaboChip, ImmunoChip, and Exome array. The new GWAS will now allow variants associated with immunologic, metabolic and oncologic phenotypes to be included in the Open Targets Platform for the expansion of target identification and selection in these traits.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="selecting-and-curating-non-genome-wide-array-studies">Selecting and curating non-genome-wide array studies<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/everything-you-need-to-know-about-the-new-gwas-catalog#selecting-and-curating-non-genome-wide-array-studies" class="hash-link" aria-label="Direct link to Selecting and curating non-genome-wide array studies" title="Direct link to Selecting and curating non-genome-wide array studies" translate="no">​</a></h3>
<p>As a first step, Open Targets selected almost 60 publications for inclusion in the GWAS Catalog. I then extracted a total of 120 new independent association studies and 823 SNP-trait associations from these publications. These are impressive numbers, and give you an idea of how many studies and SNP-trait associations (and potential targets) we were missing by not including targeted array studies in the GWAS Catalog!</p>
<p>The final step for me to do was to map all these traits, diseases and phenotypes to EFO terms, the ontology used by
<a href="https://docs.targetvalidation.org/faq/describing-diseases" target="_blank" rel="noopener noreferrer" class="">Open Targets to describe its diseases</a></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="modifying-the-gwas-catalog-user-interface">Modifying the GWAS Catalog user interface<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/everything-you-need-to-know-about-the-new-gwas-catalog#modifying-the-gwas-catalog-user-interface" class="hash-link" aria-label="Direct link to Modifying the GWAS Catalog user interface" title="Direct link to Modifying the GWAS Catalog user interface" translate="no">​</a></h3>
<p>The GWAS Catalog team have changed the way the user interface works to support searching, displaying, filtering and download of targeted and exome array studies. <a href="https://www.ebi.ac.uk/gwas/search?query=celiac%20disease" target="_blank" rel="noopener noreferrer" class="">Try it out using "celiac disease"</a>, for example. The interface will now give you:</p>
<ul>
<li class=""><strong>Drop-down filter by genotyping technology to help you focus on your favourite array</strong></li>
</ul>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/filter1-5-21cfaa474a206d654ebd43804394fd8c.png" width="454" height="211" class="img_ev3q"></p>
<ul>
<li class=""><strong>Small "target" icon (designed for us by the EMBL-EBI media team. Thanks for that!) in the study accession number column for all targeted array studies prioritised by Open Targets</strong></li>
</ul>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/target-1-e1ff6461d824c39d0bfa53dc8d6c6047.png" width="881" height="163" class="img_ev3q"></p>
<ul>
<li class=""><strong>New "genotyping technology" shown for study, e.g. genome-wide genotyping array, exome-wide genotyping array or targeted genotyping array with an optional field for additional array information, for example ImmunoChip or MetaboChip</strong></li>
</ul>
<p><img decoding="async" loading="lazy" alt="gwas-catalog" src="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/assets/images/gen-tech-1-e96736d6a6a3403fb8fbc351ddc1b37a.png" width="840" height="435" class="img_ev3q"></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="stay-tuned">Stay tuned!<a href="http://gwas.gitdocs.ebi.ac.uk/gwas/docs/news/everything-you-need-to-know-about-the-new-gwas-catalog#stay-tuned" class="hash-link" aria-label="Direct link to Stay tuned!" title="Direct link to Stay tuned!" translate="no">​</a></h3>
<p>This is an important milestone for Open Targets and the GWAS Catalog, and a lot more is yet to come. The next step for the collaboration between GWAS and Open Targets will be to develop a comprehensive database of all available GWAS full summary statistics stored in a common format and harmonised across studies to enable searching, easy comparison and downstream analysis. This effort will generate more comprehensive new raw genetic data accessible by the entire research community through the GWAS Catalog, the Open Targets Platform and additional resources the Open Targets team are working on.</p>]]></content>
        <author>
            <name>Annalisa Buniello</name>
        </author>
    </entry>
</feed>