Metadata-Version: 1.1
Name: ga4gh-schemas
Version: 0.6.0a10.post1
Summary: GA4GH API Schemas
Home-page: https://github.com/ga4gh/ga4gh-schemas
Author: Global Alliance for Genomics and Health
Author-email: theglobalalliance@genomicsandhealth.org
License: Apache License 2.0
Description: 
        .. image:: http://genomicsandhealth.org/files/logo_ga.png
        
        =============
        GA4GH Schemas
        =============
        
        This is the GA4GH schemas compiled as `Protocol Buffers <https://developers.google.com/protocol-buffers/>`_
        descriptors. It can be used to describe and serialize genomics data using a
        standard interchange format.
        
        .. code-block:: python
        
            import ga4gh.schemas.ga4gh.variants_pb2 as variants
            my_variant = variants.Variant(
                reference_name="1",
                start=1832,
                end=1833,
                reference_bases="A",
                alternate_bases=["C"])
        
        Full documentation is available at `read-the-docs.org
        <http://ga4gh-schemas.readthedocs.io/en/stable/>`_.
        
        - To read more about how the GA4GH API uses Protocol Buffers, see `here <http://ga4gh-schemas.readthedocs.io/en/stable/appendix/proto_intro.html>`_.
        
Keywords: genomics,reference
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
