V2VirusAnnotationFilter
March 26, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| accessions | List[str] | [optional] | |
| taxon | str | [optional] | |
| taxons | List[str] | [optional] | |
| refseq_only | bool | [optional] | |
| annotated_only | bool | [optional] | |
| released_since | datetime | [optional] | |
| updated_since | datetime | [optional] | |
| host | str | [optional] | |
| pangolin_classification | str | [optional] | |
| geo_location | str | [optional] | |
| usa_state | str | [optional] | |
| complete_only | bool | [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)