V2reportsGenomeAnnotation
June 10, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| gene_id | str | [optional] | |
| symbol | str | [optional] | |
| description | str | [optional] | |
| name | str | [optional] | |
| tax_id | str | [optional] | |
| taxname | str | [optional] | |
| common_name | str | [optional] | |
| type | V2GeneType | [optional] [default to V2GeneType.UNKNOWN] | |
| gene_type | str | [optional] | |
| rna_type | V2reportsRnaType | [optional] [default to V2reportsRnaType.RNA_UNKNOWN] | |
| orientation | V2reportsOrientation | [optional] [default to V2reportsOrientation.NONE] | |
| locus_tag | str | [optional] | |
| reference_standards | List[V2reportsGenomicRegion] | [optional] | |
| genomic_regions | List[V2reportsGenomicRegion] | [optional] | |
| transcripts | List[V2reportsTranscript] | [optional] | |
| proteins | List[V2reportsProtein] | [optional] | |
| chromosomes | List[str] | [optional] | |
| swiss_prot_accessions | List[str] | [optional] | |
| ensembl_gene_ids | List[str] | [optional] | |
| omim_ids | List[str] | [optional] | |
| synonyms | List[str] | [optional] | |
| annotations | List[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)