V2reportsTranscript

December 6, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
accession_versionstr[optional]
namestr[optional]
lengthint[optional]
cdsV2reportsSeqRangeSet[optional]
genomic_locationsList[V2reportsGenomicLocation][optional]
ensembl_transcriptstr[optional]
proteinV2reportsProtein[optional]
typeV2reportsTranscriptTranscriptType[optional] [default to V2reportsTranscriptTranscriptType.UNKNOWN]
select_categoryV2reportsTranscriptSelectCategory[optional] [default to V2reportsTranscriptSelectCategory.SELECT_UNKNOWN]

Example

from ncbi.datasets.openapi.models.v2reports_transcript import V2reportsTranscript

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

# convert the object into a dict
v2reports_transcript_dict = v2reports_transcript_instance.to_dict()
# create an instance of V2reportsTranscript from a dict
v2reports_transcript_from_dict = V2reportsTranscript.from_dict(v2reports_transcript_dict)

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