V2reportsAnnotation

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
assembly_accessionstr[optional]
assembly_namestr[optional]
annotation_namestr[optional]
annotation_release_datestr[optional]
genomic_locationsList[V2reportsGenomicLocation][optional]

Example

from ncbi.datasets.openapi.models.v2reports_annotation import V2reportsAnnotation

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

# convert the object into a dict
v2reports_annotation_dict = v2reports_annotation_instance.to_dict()
# create an instance of V2reportsAnnotation from a dict
v2reports_annotation_from_dict = V2reportsAnnotation.from_dict(v2reports_annotation_dict)

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