V2reportsTranscript
December 6, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| accession_version | str | [optional] | |
| name | str | [optional] | |
| length | int | [optional] | |
| cds | V2reportsSeqRangeSet | [optional] | |
| genomic_locations | List[V2reportsGenomicLocation] | [optional] | |
| ensembl_transcript | str | [optional] | |
| protein | V2reportsProtein | [optional] | |
| type | V2reportsTranscriptTranscriptType | [optional] [default to V2reportsTranscriptTranscriptType.UNKNOWN] | |
| select_category | V2reportsTranscriptSelectCategory | [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)