V2reportsSequenceDataReport
July 31, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| accession | str | [optional] | |
| organism_name | str | [optional] | |
| length | int | [optional] | |
| units | V2reportsSequenceDataReportUnits | [optional] [default to V2reportsSequenceDataReportUnits.UNITS_UNSPECIFIED] | |
| molecule_type | V2reportsSequenceDataReportMoleculeType | [optional] [default to V2reportsSequenceDataReportMoleculeType.MOLECULE_TYPE_UNSPECIFIED] | |
| database_provider | str | [optional] | |
| description | str | [optional] | |
| source_mrna | str | [optional] | |
| tax_id | int | [optional] | |
| submissions | List[V2reportsSubmission] | [optional] | |
| references | List[V2reportsSequenceReference] | [optional] | |
| bioproject_accession | str | [optional] | |
| biosample_accessions | List[str] | [optional] | |
| origin_type | V2reportsSequenceDataReportOriginType | [optional] [default to V2reportsSequenceDataReportOriginType.UNKNOWN] | |
| infraspecific_modifiers | V2reportsInfraspecificModifers | [optional] | |
| sample_info | V2reportsSampleInfo | [optional] | |
| genome_type | V2reportsSequenceDataReportGenomeType | [optional] [default to V2reportsSequenceDataReportGenomeType.GENOME_TYPE_UNKNOWN] | |
| topology | V2reportsSequenceDataReportTopologyType | [optional] [default to V2reportsSequenceDataReportTopologyType.NOT_SET] |
Example
from ncbi.datasets.openapi.models.v2reports_sequence_data_report import V2reportsSequenceDataReport
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsSequenceDataReport from a JSON string
v2reports_sequence_data_report_instance = V2reportsSequenceDataReport.from_json(json)
# print the JSON string representation of the object
print(V2reportsSequenceDataReport.to_json())
# convert the object into a dict
v2reports_sequence_data_report_dict = v2reports_sequence_data_report_instance.to_dict()
# create an instance of V2reportsSequenceDataReport from a dict
v2reports_sequence_data_report_from_dict = V2reportsSequenceDataReport.from_dict(v2reports_sequence_data_report_dict)