Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RE2022-232: Add metadata per heatmap row for biolog media #418

Merged
merged 2 commits into from
Aug 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/common/product_models/heatmap_common_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ class HeatMapRow(BaseModel):
cells: list[Cell] = Field(
description="The cells in the row of the heatmap in render order."
)
meta: dict[str, str] | None = Field(
examples=[{"media": "Spizizen minimal media + 0.5mM biotin"}],
description="Arbitrary metadata about the data in the row"
)


class HeatMap(SubsetProcessStates):
Expand Down