GA4GH API Schemas
Project description
GA4GH Schemas
This is the GA4GH schemas compiled as Protocol Buffers descriptors. It can be used to describe and serialize genomics data using a standard interchange format.
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.
To read more about how the GA4GH API uses Protocol Buffers, see here.