V2GenomeAnnotationTableSummaryReply

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
accessionstr[optional]
chromosomesList[str][optional]
gene_typesList[str][optional]
empty_columnsList[str][optional]

Example

from ncbi.datasets.openapi.models.v2_genome_annotation_table_summary_reply import V2GenomeAnnotationTableSummaryReply

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

# convert the object into a dict
v2_genome_annotation_table_summary_reply_dict = v2_genome_annotation_table_summary_reply_instance.to_dict()
# create an instance of V2GenomeAnnotationTableSummaryReply from a dict
v2_genome_annotation_table_summary_reply_from_dict = V2GenomeAnnotationTableSummaryReply.from_dict(v2_genome_annotation_table_summary_reply_dict)

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