You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* first pass at drafting stub api endpoint for vlm caf request
* add enums for genomic reference assembly ids
* add validation for 'referenceBases' and 'alternateBases'
* refactor to use FastAPI's built-in validation
* add validation for 'referenceName' param
* add TODOs with issue numbers for work to be completed in future tickets
* move endpoint from 'main.py' into 'restapi/vlm.py'
* refactor chromosome name validation to be more streamlined
* fix casing in function params
* add newline to end of file
* update endpoint description
* update 'get_caf' method signature with better typing
* update a few names, types, and comments for clairity
* add support for mitochondrial DNA
* fix typo: 'uscs' > 'ucsc'
Co-authored-by: James Stevenson <[email protected]>
* use python's built-in 'removeprefix' function
Co-authored-by: James Stevenson <[email protected]>
* Update 'uscs' > 'ucsc' in all imports/usages
* remove docstring from FastAPI endpoint since the info is duplicated by the auto-generated documentation
* streamline chromosome name validation
* update one last instance of 'uscs' > 'ucsc'
* Expand the allowable values in the 'GenomicSequence' type
Co-authored-by: Kori Kuzma <[email protected]>
* rename 'GenomicSequence' to NucleotideSequence' for specificity
* add tests for chromosome name validation
* add support for gap character in NucleotideSequence type
---------
Co-authored-by: James Stevenson <[email protected]>
Co-authored-by: Kori Kuzma <[email protected]>
description="Retrieve service metadata, such as versioning and contact info. Structured in conformance with the [GA4GH service info API specification](https://www.ga4gh.org/product/service-info/)",
93
-
tags=[_Tag.META],
88
+
tags=[EndpointTag.META],
94
89
)
95
90
defservice_info() ->ServiceInfo:
96
91
"""Provide service info per GA4GH Service Info spec"""
0 commit comments