Skip to content

Commit b1ba654

Browse files
committed
Added column to CLEMImageSeries table to keep track of collection mode used for dataset
1 parent 04310ed commit b1ba654

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/murfey/util/db.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ class CLEMImageSeries(SQLModel, table=True): # type: ignore
301301
has_cyan: Optional[bool] = Field(default=None)
302302
has_magenta: Optional[bool] = Field(default=None)
303303
has_yellow: Optional[bool] = Field(default=None)
304+
collection_mode: Optional[str] = Field(default=None)
304305

305306
# Shape and resolution information
306307
image_pixels_x: Optional[int] = Field(default=None)

0 commit comments

Comments
 (0)