@@ -715,8 +715,8 @@ def get_score_set_variants_csv(
715715 urn : str ,
716716 start : int = Query (default = None , description = "Start index for pagination" ),
717717 limit : int = Query (default = None , description = "Maximum number of variants to return" ),
718- namespaces : List [Literal ["scores" , "counts" ]] = Query (
719- default = ["scores" ], description = "One or more data types to include: scores, counts, clinVar, gnomAD"
718+ namespaces : List [Literal ["scores" , "counts" , "vep" ]] = Query (
719+ default = ["scores" ], description = "One or more data types to include: scores, counts, clinVar, gnomAD, VEP "
720720 ),
721721 drop_na_columns : Optional [bool ] = None ,
722722 include_custom_columns : Optional [bool ] = None ,
@@ -741,7 +741,7 @@ def get_score_set_variants_csv(
741741 The index to start from. If None, starts from the beginning.
742742 limit : Optional[int]
743743 The maximum number of variants to return. If None, returns all variants.
744- namespaces: List[Literal["scores", "counts"]]
744+ namespaces: List[Literal["scores", "counts", "vep" ]]
745745 The namespaces of all columns except for accession, hgvs_nt, hgvs_pro, and hgvs_splice.
746746 We may add ClinVar and gnomAD in the future.
747747 drop_na_columns : bool, optional
0 commit comments