V2reportsExpressionBioProject
July 31, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| accession | str | [optional] | |
| study_title | str | [optional] | |
| description | str | [optional] | |
| sra_study_accession | str | [optional] | |
| pmid | str | [optional] | |
| samples | List[V2reportsSample] | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_expression_bio_project import V2reportsExpressionBioProject
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsExpressionBioProject from a JSON string
v2reports_expression_bio_project_instance = V2reportsExpressionBioProject.from_json(json)
# print the JSON string representation of the object
print(V2reportsExpressionBioProject.to_json())
# convert the object into a dict
v2reports_expression_bio_project_dict = v2reports_expression_bio_project_instance.to_dict()
# create an instance of V2reportsExpressionBioProject from a dict
v2reports_expression_bio_project_from_dict = V2reportsExpressionBioProject.from_dict(v2reports_expression_bio_project_dict)