V2VirusAnnotationFilter

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
accessionsList[str][optional]
taxonstr[optional]
taxonsList[str][optional]
refseq_onlybool[optional]
annotated_onlybool[optional]
released_sincedatetime[optional]
updated_sincedatetime[optional]
hoststr[optional]
pangolin_classificationstr[optional]
geo_locationstr[optional]
usa_statestr[optional]
complete_onlybool[optional]

Example

from ncbi.datasets.openapi.models.v2_virus_annotation_filter import V2VirusAnnotationFilter

# TODO update the JSON string below
json = "{}"
# create an instance of V2VirusAnnotationFilter from a JSON string
v2_virus_annotation_filter_instance = V2VirusAnnotationFilter.from_json(json)
# print the JSON string representation of the object
print(V2VirusAnnotationFilter.to_json())

# convert the object into a dict
v2_virus_annotation_filter_dict = v2_virus_annotation_filter_instance.to_dict()
# create an instance of V2VirusAnnotationFilter from a dict
v2_virus_annotation_filter_from_dict = V2VirusAnnotationFilter.from_dict(v2_virus_annotation_filter_dict)

[Back to Model list] [Back to API list] [Back to README]