Federated discovery and sharing of genomic data using Beacons (2024)

To the Editor — The Beacon Project (https://github.com/ga4gh-beacon/) is a Global Alliance for Genomics & Health (GA4GH)1 initiative that enables genomic and clinical data sharing across federated networks. The project is working toward developing regulatory, ethics and security guidance to ensure proportionate safeguards for distribution of data according to the GA4GH-developed “Framework for Responsible Sharing of Genomic and Health-Related Data”2. Here we describe the Beacon protocol and how it can be used as a model for the federated discovery and sharing of genomic data.

A Beacon is defined as a web-accessible service that can be queried for information about a specific allele. A user of a Beacon can pose queries of the form “Have you observed this nucleotide (e.g., C) at this genomic location (e.g., position 32,936,732 on chromosome 13)?” to which the Beacon responds with either “yes” or “no.” In this way, a Beacon allows allelic information of interest to be discovered by a remote searcher with no reference to a specific sample or patient, thereby mitigating privacy risks.

In principle, allelic information from any source (or species) can be distributed through a Beacon. For example, a Beacon may serve data from case-level observations, such as genetic variants identified from sequenced samples, or from annotation resources such as variant–disease associations curated from scientific literature. Along with a “yes” response, a Beacon may optionally disclose metadata, including allele frequencies, pathogenicity scores and associated phenotypes, associated with the queried allele. Access to Beacons is securable through institutional systems for authentication and authorization (for example, ELIXIR AAI), allowing hosts to enforce proportionate safeguards for datasets that may be sensitive and consented for use only by trusted individuals and/or for specific purposes.

The Beacon Project is demonstrating the willingness of international organizations to work together to define standards for, and actively engage in, genomic data sharing. Several organizations have ‘lit’ (i.e., implemented) a Beacon, and these have been assembled into a single searchable network. In the years since the project’s inception, over 100 Beacons have been lit by 40 organizations serving over 200 datasets. The datasets served through Beacons are searchable individually or in aggregate—for instance, via the Beacon Network (https://beacon-network.org), a federated search engine across the world’s beacons.

Beacons are a general-purpose protocol for genomics data discovery and have been lit by both large and small organizations, as well as by individuals. This has made available datasets collected from large-scale population sequencing efforts (for example, 1000 Genomes)3, clinical diagnostic settings, in silico predictions (for example, PolyPhen-2)4, expertly curated or crowd-sourced databases, scientific literature (for example, the Human Genome Mutation Database)5 and variant curation efforts (for example, ClinVar)6. The International Cancer Genome Consortium7 Beacon shares case-level somatic variant observations from over 60 cancer subtypes; the PhenomeCentral8 Beacon shares observations from hundreds of clinical cases of undiagnosed and rare genetic diseases; and the BRCA Exchange (https://brcaexchange.org/) Beacon distributes consensus classifications for variants in BRCA1 and BRCA2 cataloged by the ENIGMA Consortium9, as well as variants collected from other resources as part of the GA4GH BRCA Exchange (https://brcaexchange.org/). The ELIXIR hub (https://elixir-europe.org/) is also integrating Beacon to connect geographically distributed data centers and unify their data access methodologies. This will enable aggregate sharing of allelic observations between sites, a feature that is not yet available through its services. With continued adoption, Beacons will produce a large network of globally searchable genomics datasets that have the potential to unlock new genomics-derived discoveries and applications in medicine.

Beacon protocol

Many former systems for genomic data sharing have followed a centralized model, wherein data generators deposit information into a single repository, such as the Sequence Read Archive (SRA)10. This model requires data generators to transfer whole copies of datasets over the internet, which will become inefficient and expensive as the rate of genomic data acquisition increases. An alternative, federated model for data sharing1 requires organizations to host data independently and to interoperate via an agreed-upon technical language. This model removes the inefficiencies of large data transfers and gives host organizations more control over data privacy, security and representation.

For maximal interoperability, a Beacon is designed to be a communication layer that is compatible with any underlying representation of alleles or their annotations. For example, the GA4GH develops a data representation format for genomic variants and annotations, but in practice these data types may be stored in other formats as well (for example, VCF files or relational databases).

Sharing through Beacon is notably different from sharing fully descript data representations for genomic variants (for example, VCF) or annotations (for example, GFF). The Beacon protocol considers levels of data aggregation and obfuscation that can be added onto raw data representations (such as VCF) to convey useful information without explicitly referring to specific samples or individuals.

With these features in mind, the Beacon protocol was designed to be:

  • Simple: Beacons can be implemented on top of any underlying variant or variant annotation data store.

  • Federated: Beacons can be lit and maintained by individual organizations and assembled into a distributed network.

  • General purpose: Beacons can be used to distribute any allelic dataset, including case-level observations or other annotations.

  • Aggregative: Beacons provide a boolean answer to whether an allele was observed, possibly aggregated across an entire population, and therefore support deidentification in a way that sharing via VCF files does not.

  • Securable: Beacon access can be restricted using institutional security protocols, and authorization schemes can be implemented to respect conditions consented to by patients and/or data owners.

The Beacon API (represented as a RESTful web application) provides a technical specification that a Beacon server must implement. The specification is open-source and available online at https://github.com/ga4gh-beacon/specification.

A Beacon has two available functions: the first lists information about the Beacon, including descriptions of the host organization and specific datasets that it serves; the second queries for the existence of information about specific alleles. Alleles are specified with chromosomal coordinates in addition to reference and alternate bases. Much as in their use in VCF, reference and alternative bases can be used together to specify exact matches for single nucleotide variants (SNVs) and small insertions or deletions. A Beacon responds either “yes” or “no” to signal whether the dataset(s) it serves have information about the queried allele. In the affirmative, a Beacon may optionally disclose metadata describing the observations or annotations associated with the queried allele. An example query and response is shown in Supplementary Fig. 1.

Reference implementation

To simplify the process of lighting a Beacon, a free, open-source ‘reference implementation’ of the latest specification has been developed.

This implementation can create a public Beacon from a set of VCF files. It may be deployed locally or in a cloud-based environment maintained by a third-party provider (for example, Amazon, Google or Microsoft). Documentation and links to download and run the Beacon reference implementation are available (https://github.com/ga4gh-beacon/). Third-party organizations, such as Cafe Variome, DNAstack and the European Genome-phenome Archive (EGA), also support the ability to light Beacons from genetic variation datasets stored in those systems.

Beacon security design

In principle, access to Beacons can be secured through any system of authentication or authorization, at the discretion of the host organization. The GA4GH is promoting different levels of data access (open, registered, and controlled) for convenience and for compatibility across its projects. Each so-called ‘access tier’ has distinct visibility and requirements for authorization. For example, ‘open access’ Beacons are accessible to anonymous users of the internet, whereas ‘registered access’ Beacons are accessible to registered users (for example, bona fide researchers and clinicians) who have agreed to a set of conditions of data use11.

A Beacon may support one or more access tiers to provide progressive disclosure of increasingly sensitive information (for example, patient phenotypes and clinical information) as users pass through more stringent authentication and authorization checks. For example, tiered access makes it possible for organizations to allow anonymous users to discover the existence of an allelic observation, without the Beacon disclosing more information about it until users identify themselves. The ability for organizations to offer minimal data discovery up front can save substantial time and effort in data access applications when data might not contain relevant data points.

Beacon’s ability to reveal different information at specific access tiers affords genomic data stewards options for distributing allelic information, ranging from fully public to private. Access can be controlled using established authentication and authorization protocols (for example, OpenID Connect and OAuth2.0) to enforce proportionate safeguards for datasets that may be sensitive and/or consented for use only by trusted individuals for specific purposes.

Attribute disclosure attacks and reidentification

The “yes” response from a Beacon signals the presence of an allele in a dataset comprising possibly many individuals’ genotypes, thereby mitigating risks associated with reidentifying specific individuals. Independent of their technical implementation, Beacon reidentification attempts require prior knowledge of genomic sequence data from the individual (or that of a close relative); they are arguably preceded by more harmful compromises to privacy. However, reidentification can pose additional risks if sensitive attributes about the individual can be inferred from Beacons (for example, HIV status or mental health condition). Such attacks have been characterized as “attribute disclosure attacks using DNA” (ADAD)12.

Querying a Beacon for many variants known to exist in a person’s genome could lead to confirmation of that person’s inclusion in a given database, potentially revealing sensitive information about that individual. The ability to reidentify individuals has been examined previously13 and recently in the context of Beacons14. The power to reidentify an individual whose genotypes are reflected through a Beacon depends on the number of individuals whose data is served, the allele frequency distribution of the pool, the scope of allowed queries (for example, exome versus genome), the type of DNA source (for example, normal tissue versus cancer sample) and the number of times a Beacon is queried. Models for population allele frequencies can be leveraged to reduce the number of queries required in such an attempt, but reidentification is still possible without using allele frequencies if a Beacon can be queried a large number of (for example, 10,000) times.

Risk mitigation schemes

User agreements, data use policies and technical enforcement of usage quotas can be established to limit the possibility of reidentification and ADAD through Beacons. Organizations are advised to specify terms of use that explicitly prohibit reidentification attempts through the service. When the risk of ADAD is considered too high for data to be distributed publicly, data stewards are encouraged to implement secured access. Compared with public-access tiers, secured-access tiers (either registered or controlled) impose extra social and/or legal disincentives that can help prevent service misuse.

Beacon operators may further specify consent-based data use conditions from a structured set of Consent Codes to impose restrictions indicated by consent of research participants. These Consent Codes, which are general purpose and can be used by genomics data stewards, including Beacon operators, were designed with the purpose of supporting maximum data use and integration while respecting consent permissions15. The current set of Consent Codes is provided in Supplementary Table 1.

The ethical, legal and social status of health-related data that are typically considered sensitive in international policy and laws is being examined to provide guidance in aggregating Beacons and in implementing tiered protection of Beacon attributes based on sensitivity16. This guidance aims to enable consistent and proportionate provision of data protection for data that are considered more sensitive by individuals and society. Data stewards should consider the sensitivity of attributes used in describing their Beacons, as well as those in the data itself.

Technical provisions can also be used to reduce the statistical power of reidentification attempts. Individual Beacons can be combined to form a single, aggregate Beacon, and direct access to participating Beacons can be blocked. Aggregate beacons contain more data points than any of the individual Beacons while obscuring the origin of the data. As an example, a publicly accessible Beacon named Conglomerate has been lit as an aggregate of multiple independent Beacons.

An information budgeting approach can also be used to thwart reidentification attempts17, which rely on accumulating evidence from many queries for alleles carried by a specific individual. The power to reidentify an individual using this technique varies inversely with the frequency of the alleles being queried (i.e., very rare alleles are more revealing than common alleles). By metering the cumulative information disclosure for individuals, Beacons can be configured to restrict access before reidentification is possible within a desired level of statistical confidence.

Beacon is a general-purpose protocol for genomics data discovery, and as such can be used to distribute allelic information from various origins, including sequence observations from patients with known (for example, the International Cancer Genome Consortium)7 or unknown (e.g., PhenomeCentral)8 diseases, population studies (for example, 1000 Genomes)3, in silico predictions (for example, PolyPhen-2)4, expertly curated or crowd-sourced databases (for example, BRCA Exchange and ClinVar)6, and scientific literature (for example, the Human Genome Mutation Database)5. Additional Beacon implementations are ongoing in Europe, mainly through the ELIXIR Beacon project. The deployment of Beacons for select use cases is described below.

Matchmaking

A major obstacle to discovering the causes of rare diseases is sample size. A single affected family can be enough to identify one or more compelling candidate variants, but pinpointing causal genetic variants frequently requires examining unrelated cases with a variant in the same gene and similar phenotypic presentations. Recently, patient matchmaking has been formalized through efforts such as the Matchmaker Exchange (MME)18, in which users who contribute a case to a database within the federated network can find similar cases in other databases within the network.

MME is a secured-access system, requiring that only authorized databases and users can contribute and exchange patient profiles for matching. However, this inherently limits the discoverability of the data, which may dissuade some users having candidate genes or variants they want to match. In addition to implementing the MME API19 for patient matchmaking, several organizations within the MME have lit Beacons to serve aggregate views of their clinical datasets more publicly. This allows clinicians with candidate variants to quickly search for existing matches within the MME.

Sequencing initiatives and archives

Large-scale sequencing initiatives, such as the 100,000 Genomes Project20 conducted by Genomics England and the Precision Medicine Initiative21, promise to generate vast volumes of genotypic and associated health information. Data from these projects, once shared, help researchers make inferences on the genetic determinants of disease by way of comparative analysis and association studies.

The 1000 Genomes Project3, NHLBI Grand Opportunity Exome Sequence Project (https://esp.gs.washington.edu/drupal/), and Exome Aggregation Consortium22 are exemplar large-scale initiatives that have shared genotypes from diverse populations through Beacons. As the number and scale of population sequencing efforts expand, a more accurate depiction of global sequence diversity will be available in aggregate through Beacons and the Beacon Network.

In addition, many of the largest genomic archives, such as dbGaP22, the European Genome-phenome Archive (https://www.ebi.ac.uk/ega/home) and the European Variation Archive (http://www.ebi.ac.uk/eva), have provided access to variation data through Beacons for some or all of their datasets. These Beacons collectively provide widespread discoverability across a large amount of data. Many of these resources are continually growing with new submissions and thus provide added value for data depositors by simplifying data distribution and unifying their consumption.

Beacon Network

Beacon represents a simple protocol that, like internet protocols such as HTTP, describes a method for data discovery and exchange between distributed, collaborative systems. Toward developing an ‘internet for genomics’, it is useful to establish a network of protocol adopters and an efficient mechanism for searching across it.

The Beacon Network is a directory and search engine for Beacons. Although individual Beacons answer the question “Have you observed this allele?”, the Beacon Network answers the question “Who has observed this allele?”. The Beacon Network serves as a powerful, convenient and real-time genomic data distribution channel through which users can discover the existence of alleles of interest and be directed to host organizations who have observed them. A schematic of the Beacon Network as a global federated network for genomic information discovery is shown in Fig. 1.

The user interacts with the Beacon Network system by asking for information about the existence of a particular genetic mutation. The Beacon Network federates the query across many Beacon instances serving various types of data, such as a variant database, VCF files or patient records. The Beacon Network collects the responses from Beacons and presents aggregated information to the user. BIPMed (http://bipmed.org), the Brazilian Initiative on Precision Medicine, is a population sequencing effort while MSSNG (http://mss.ng) collects sequence information from subjects with autism and their families.

Full size image

The Beacon Network is accessible either through its website or programmatically through an API, and enables fast, simultaneous search of hundreds of datasets from hundreds of thousands of individuals already served through Beacons worldwide.

Beacons can be freely registered to the Beacon Network and can be searched independently or in aggregate with other connected Beacons. The Beacon Network has received over 1.5 million queries in the three years since its launch. The value of datasets connected to the Beacon Network increases as more Beacons join, particularly for comparative applications like rare disease and donor matching.

Conclusions and perspectives

The first version of the Beacon Project has validated the feasibility of a globally federated system for genomic data sharing. The conceptual and technical simplicity of the discovery question, “Have you observed this allele?”, enabled rapid and widespread adoption, and this has served to provide practical feedback for the GA4GH to continue to advance its best practices by holistically addressing regulatory, security and technical aspects of global genomics data sharing. However, the narrow focus of the initial Beacon question limits its utility to support other closely related use cases, and successive iterations of the protocol are planned to enable coverage of these.

Future extensions to the Beacon protocol may include the following:

  • Support for discovering complex genomic alterations, including copy number variations (CNVs) and somatic copy number alterations (CNAs), which are major contributors to both inter-individual variation and disease susceptibility and prominent features of the oncogenomic mutation landscape;

  • Integration of non-genomics data in queries, including the ability to discover similar cases on the basis of associated metadata;

  • Support for quantitative attributes in responses (for example, allele frequencies) to facilitate statistical analyses that combine information disclosed through multiple Beacons;

  • Handoff to services by which users may access additional information about a queried variant.

The development of data-rich extensions to the Beacon protocol will leverage the expertise of GA4GH members and stakeholders to iteratively design and evaluate the technical, privacy and security considerations in evolving Beacons to enable unprecedented access to genomics and clinical datasets through a global, federated ecosystem.

Change history

References

  1. Global Alliance for Genomics and Health. Science 352, 1278–1280 (2016).

    Article Google Scholar

  2. Knoppers, B. M. HUGO J. 8, 3 (2014).

    Article Google Scholar

  3. 1000 Genomes Project Consortium. et al. Nature 526, 68–74 (2015).

    Article Google Scholar

  4. Adzhubei, I. A. et al. Nat. Methods 7, 248–249 (2010).

    Article CAS Google Scholar

  5. Stenson, P. D. et al. Hum. Genet. 133, 1–9 (2014).

    Article CAS Google Scholar

  6. Landrum, M. J. et al. Nucleic Acids Res. 42, D980–D985 (2014).

    Article CAS Google Scholar

  7. International Cancer Genome Consortium. et al. Nature 464, 993–998 (2010).

    Article Google Scholar

  8. Buske, O. J. et al. Hum. Mutat. 36, 931–940 (2015).

    Article Google Scholar

  9. Spurdle, A. B. et al. Hum. Mutat. 33, 2–7 (2012).

    Article CAS Google Scholar

  10. Leinonen, R., Sugawara, H. & Shumway, M. & International Nucleotide Sequence Database Collaboration. Nucleic Acids Res 39, D19–D21 (2011).

    Article CAS Google Scholar

  11. Dyke, S. O. M. et al. Eur. J. Hum. Genet. 24, 1676–1680 (2016).

    Article Google Scholar

  12. Erlich, Y. & Narayanan, A. Nat. Rev. Genet. 15, 409–421 (2014).

    Article CAS Google Scholar

  13. Homer, N. et al. PLoS Genet. 4, e1000167 (2008).

    Article Google Scholar

  14. Shringarpure, S. S. & Bustamante, C. D. Am. J. Hum. Genet. 97, 631–646 (2015).

    Article CAS Google Scholar

  15. Dyke, S. O. M. et al. PLoS Genet. 12, e1005772 (2016).

    Article Google Scholar

  16. Dyke, S. O. M., Dove, E. S. & Knoppers, B. M. Genomic Med. 1, 16024 (2016).

    Article Google Scholar

  17. Raisaro, J. L. et al. J. Am. Med. Inform. Assoc. 24, 799–805 (2017).

    Article Google Scholar

  18. Philippakis, A. A. et al. Hum. Mutat. 36, 915–921 (2015).

    Article Google Scholar

  19. Buske, O. J. et al. Hum. Mutat. 36, 922–927 (2015).

    Article Google Scholar

  20. Peplow, M. Br. Med. J. 353, i1757 (2016).

    Article Google Scholar

  21. Ashley, E. A. J. Am. Med. Assoc. 313, 2119–2120 (2015).

    Article CAS Google Scholar

  22. Mailman, M.D. et al. Nat. Genet. 39, 1181–1186 (2007).

    Article CAS Google Scholar

Download references

Acknowledgements

J. Ostell conceived the project; Global Alliance for Genomics & Health provided substantial guidance and support. The Beacon Project team designed and developed the Beacon API. Members of various organizations implemented Beacons and contributed to its APIs. We are thankful for data contributors who elect to share their data. M.F. and S.O.M.D. are supported by Genome Quebec, Genome Canada, the Government of Canada, and the Ministère de l’Économie, Innovation et Exportation du Québec (Can-SHARE grant 141210); S.O.M.D. is supported by the Canadian Institutes of Health Research (grants EP1-120608; EP2-120609) and the Canada Research Chair in Law and Medicine; M.H. is supported by BD2K NIH/NCI 5U54HG007990-02; S. Scollen, S.V., M.B., I.L., J.T., S.U.-R., S.d.l.T., M.L., H.S. and the EGA are supported by ELIXIR, the research infrastructure for life-science data. This work was supported by ELIXIR-EXCELERATE, funded by the European Commission within the Research Infrastructures programme of Horizon 2020, grant agreement number 676559 (J.D.S., I.L.), the Wellcome Trust grant numbers WT201535/Z/16/Z (P.F.) and WT098051 (S.K., D.L., P.F.), and the European Molecular Biology Laboratory (P.F., S.K., J.D.S., I.L.); A.J.B. is supported by the European Union FP7 Programme ‘EMIF’ IMI-JU grant no. 115372, and H2020 Programme ‘GCOF’ grant no. 643439.

Author information

Authors and Affiliations

  1. DNAstack, Toronto, Ontario, Canada

    Marc Fiume&Miroslav Cupak

  2. Global Alliance for Genomics and Health, Toronto, Ontario, Canada

    Stephen Keenan,Peter Goodhand,Lena Dolman&Angela Page

  3. European Molecular Biology Laboratory, European Bioinformatics Institute, Wellcome Genome Campus, Hinxton, Cambridge, UK

    Stephen Keenan,Ilkka Lappalainen,J. Dylan Spalding,Saif Ur-Rehman&Paul Flicek

  4. Centre de Regulació Genòmica, Barcelona, Spain

    Jordi Rambla&Sabela de la Torre

  5. Centre of Genomics and Policy, Department of Human Genetics, McGill University, Montreal, Quebec, Canada

    Stephanie O. M. Dyke

  6. Department of Genetics, University of Leicester, Leicester, UK

    Anthony J. Brookes

  7. Genecloud, Sunnyvale, CA, USA

    Knox Carey

  8. ELIXIR Hub, Wellcome Genome Campus, Hinxton, Cambridge, UK

    David Lloyd,Susheel Varma,Gary Saunders&Serena Scollen

  9. Ontario Institute for Cancer Research, Toronto, Ontario, Canada

    Peter Goodhand&Lena Dolman

  10. Genomics Institute, University of California at Santa Cruz, Santa Cruz, CA, USA

    Maximilian Haeussler&David Haussler

  11. Department of Molecular Life Sciences, University of Zurich, Zurich, Switzerland

    Michael Baudis

  12. SIB Swiss Institute of Bioinformatics, Lausanne, Switzerland

    Michael Baudis&Heinz Stockinger

  13. CSC – IT Center for Science Ltd, Espoo, Finland

    Ilkka Lappalainen,Juha Törnroos&Mikael Linden

  14. Broad Institute of MIT and Harvard, Cambridge, MA, USA

    Angela Page

  15. Wellcome Trust Sanger Institute, Wellcome Genome Campus, Hinxton, Cambridge, UK

    Paul Flicek

  16. National Center for Biotechnology Information, US National Library of Medicine, Bethesda, MD, USA

    Stephen Sherry

Authors

  1. Marc Fiume

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  2. Miroslav Cupak

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  3. Stephen Keenan

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  4. Jordi Rambla

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  5. Sabela de la Torre

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  6. Stephanie O. M. Dyke

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  7. Anthony J. Brookes

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  8. Knox Carey

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  9. David Lloyd

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  10. Peter Goodhand

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  11. Maximilian Haeussler

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  12. Michael Baudis

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  13. Heinz Stockinger

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  14. Lena Dolman

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  15. Ilkka Lappalainen

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  16. Juha Törnroos

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  17. Mikael Linden

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  18. J. Dylan Spalding

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  19. Saif Ur-Rehman

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  20. Angela Page

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  21. Paul Flicek

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  22. Stephen Sherry

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  23. David Haussler

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  24. Susheel Varma

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  25. Gary Saunders

    View author publications

    You can also search for this author in PubMedGoogle Scholar

  26. Serena Scollen

    View author publications

    You can also search for this author in PubMedGoogle Scholar

Contributions

M.F., S. Scollen, G.S., S.V., S.K., D.L., P.G., S. Sherry, M.B., I.L. and D.H. provided project leadership and management; M.C., J.R., S.d.l.T., J.T., K.C., A.J.B., M.H., M.B., H.S., M.L., J.D.S. and S.U.-R. designed and developed software; S.O.M.D. developed ethics and policy research; M.F. and M.C. designed and developed the Beacon Network; P.F. provided security review; M.F. and L.D. wrote the manuscript with contributions from all other authors.

Corresponding author

Correspondence to Marc Fiume.

Ethics declarations

Competing interests

The authors declare no competing interests.

Additional information

Editor’s Note: This article has been peer-reviewed

Supplementary information

Supplementary Text and Figures

Supplementary Figure 1 and Supplementary Table 1

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made. The images or other third party material in this article are included in the article’s Creative Commons license, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons license and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/.

Reprints and permissions

About this article

Federated discovery and sharing of genomic data using Beacons (2)

Cite this article

Fiume, M., Cupak, M., Keenan, S. et al. Federated discovery and sharing of genomic data using Beacons. Nat Biotechnol 37, 220–224 (2019). https://doi.org/10.1038/s41587-019-0046-x

Download citation

  • Published:

  • Issue Date:

  • DOI: https://doi.org/10.1038/s41587-019-0046-x

Federated discovery and sharing of genomic data using Beacons (2024)
Top Articles
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 5921

Rating: 4.2 / 5 (73 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.