Skip to content

Files

Latest commit

Mar 11, 2025
eae736a · Mar 11, 2025

History

History
30 lines (21 loc) · 1.17 KB

ClusteredMedianGeneExpression.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

ClusteredMedianGeneExpression

Properties

Name Type Description Notes
clusters Dict[str, str] [optional]
median_gene_expression List[MedianGeneExpression]

Example

from gtex_openapi.models.clustered_median_gene_expression import ClusteredMedianGeneExpression

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

# convert the object into a dict
clustered_median_gene_expression_dict = clustered_median_gene_expression_instance.to_dict()
# create an instance of ClusteredMedianGeneExpression from a dict
clustered_median_gene_expression_from_dict = ClusteredMedianGeneExpression.from_dict(clustered_median_gene_expression_dict)

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