V2reportsGeneDescriptor

June 10, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
gene_idstr[optional]
symbolstr[optional]
descriptionstr[optional]
tax_idstr[optional]
taxnamestr[optional]
common_namestr[optional]
typeV2GeneType[optional] [default to V2GeneType.UNKNOWN]
rna_typeV2reportsRnaType[optional] [default to V2reportsRnaType.RNA_UNKNOWN]
orientationV2reportsOrientation[optional] [default to V2reportsOrientation.NONE]
reference_standardsList[V2reportsGenomicRegion][optional]
genomic_regionsList[V2reportsGenomicRegion][optional]
chromosomesList[str][optional]
nomenclature_authorityV2reportsNomenclatureAuthority[optional]
swiss_prot_accessionsList[str][optional]
ensembl_gene_idsList[str][optional]
omim_idsList[str][optional]
synonymsList[str][optional]
alternate_namesList[str][optional]
replaced_gene_idstr[optional]
annotationsList[V2reportsAnnotation][optional]
transcript_countint[optional]
protein_countint[optional]
transcript_type_countsList[V2reportsTranscriptTypeCount][optional]
gene_groupsList[V2reportsGeneGroup][optional]
summaryList[V2reportsGeneSummary][optional]
gene_ontologyV2reportsGeneOntology[optional]
locus_tagstr[optional]
map_locationsList[V2reportsMapLocation][optional]

Example

from ncbi.datasets.openapi.models.v2reports_gene_descriptor import V2reportsGeneDescriptor

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

# convert the object into a dict
v2reports_gene_descriptor_dict = v2reports_gene_descriptor_instance.to_dict()
# create an instance of V2reportsGeneDescriptor from a dict
v2reports_gene_descriptor_from_dict = V2reportsGeneDescriptor.from_dict(v2reports_gene_descriptor_dict)

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