V2reportsGenomeAnnotation

June 10, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
gene_idstr[optional]
symbolstr[optional]
descriptionstr[optional]
namestr[optional]
tax_idstr[optional]
taxnamestr[optional]
common_namestr[optional]
typeV2GeneType[optional] [default to V2GeneType.UNKNOWN]
gene_typestr[optional]
rna_typeV2reportsRnaType[optional] [default to V2reportsRnaType.RNA_UNKNOWN]
orientationV2reportsOrientation[optional] [default to V2reportsOrientation.NONE]
locus_tagstr[optional]
reference_standardsList[V2reportsGenomicRegion][optional]
genomic_regionsList[V2reportsGenomicRegion][optional]
transcriptsList[V2reportsTranscript][optional]
proteinsList[V2reportsProtein][optional]
chromosomesList[str][optional]
swiss_prot_accessionsList[str][optional]
ensembl_gene_idsList[str][optional]
omim_idsList[str][optional]
synonymsList[str][optional]
annotationsList[V2reportsAnnotation][optional]

Example

from ncbi.datasets.openapi.models.v2reports_genome_annotation import V2reportsGenomeAnnotation

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

# convert the object into a dict
v2reports_genome_annotation_dict = v2reports_genome_annotation_instance.to_dict()
# create an instance of V2reportsGenomeAnnotation from a dict
v2reports_genome_annotation_from_dict = V2reportsGenomeAnnotation.from_dict(v2reports_genome_annotation_dict)

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