Analysis pools¶
Analysis pools are backend data-model objects that collect per-file analysis summaries into a single flat pandas DataFrame, one row per acquisition image/channel/ROI selection. CloudScope consumes the same DataFrame at runtime for its pool plots.
Flat summary table owned by an AcqImageList.
AnalysisPool is the base class for concrete collection-level tables such
as VelocityAnalysisPool. It owns the DataFrame, row identity, row
refresh/removal behavior, and CSV export. Derived classes define which
analysis types contribute summary columns.
The pool does not run analysis and is not a persistence source of truth. It
reflects state already present in each AcqImage analysis set, especially
small JSON summary payloads that are inexpensive to load for large file
collections.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
acq_image_list
|
AcqImageList
|
Collection that owns this pool. |
required |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | |
columns
property
¶
columns: tuple[str, ...]
Return the complete pool column schema.
Returns:
| Type | Description |
|---|---|
str
|
Tuple containing base columns followed by prefixed analysis summary |
...
|
columns. |
dataframe
property
¶
dataframe: DataFrame
Return the live pool DataFrame.
Returns:
| Type | Description |
|---|---|
DataFrame
|
The internal DataFrame object. Mutating it directly is possible but |
DataFrame
|
callers that need isolation should use :meth: |
get_analysis_column_specs
classmethod
¶
get_analysis_column_specs() -> tuple[
tuple[str, str, type[BaseAnalysis]], ...
]
Return cached (pool_column, summary_key, analysis_cls) tuples.
Column specs are computed once per concrete pool class because analysis summary schemas are fixed for the lifetime of a process.
Returns:
| Type | Description |
|---|---|
tuple[tuple[str, str, type[BaseAnalysis]], ...]
|
Tuple of pool column mappings for each configured analysis spec. |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
pool_column_names
classmethod
¶
pool_column_names() -> tuple[str, ...]
Return the complete pool column schema for this pool class.
Returns:
| Type | Description |
|---|---|
tuple[str, ...]
|
Tuple containing base columns followed by analysis summary columns. |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
128 129 130 131 132 133 134 135 136 137 138 | |
get_dataframe ¶
get_dataframe(*, copy: bool = True) -> pd.DataFrame
Return the pool DataFrame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
copy
|
bool
|
When true, return a copy so caller mutations do not affect the pool. When false, return the live DataFrame. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
Pool DataFrame with one row per |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
160 161 162 163 164 165 166 167 168 169 170 171 172 | |
rebuild ¶
rebuild() -> None
Rebuild the entire pool from the current AcqImageList state.
Returns:
| Type | Description |
|---|---|
None
|
None. |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
174 175 176 177 178 179 180 181 182 183 184 185 186 | |
refresh_row ¶
refresh_row(
file_id: str, *, channel: int, roi_id: int
) -> None
Create or replace one row from current AcqImage state.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Raises:
| Type | Description |
|---|---|
KeyError
|
If |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | |
remove_row ¶
remove_row(
file_id: str, *, channel: int, roi_id: int
) -> None
Remove one row if present.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
215 216 217 218 219 220 221 222 223 224 225 226 227 | |
remove_roi ¶
remove_roi(file_id: str, *, roi_id: int) -> None
Remove all rows for one file/ROI across channels.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
229 230 231 232 233 234 235 236 237 238 239 240 | |
to_csv ¶
to_csv(path: str | Path) -> None
Write the current pool DataFrame to CSV.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Destination CSV path. Parent directories are created when needed. |
required |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
242 243 244 245 246 247 248 249 250 251 | |
build_pool_row_id
classmethod
¶
build_pool_row_id(
file_id: str, *, channel: int, roi_id: int
) -> str
Return the canonical unique pool row identifier.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier, currently the resolved source path. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Returns:
| Type | Description |
|---|---|
str
|
Stable string suitable for GUI unique-row-id contracts. |
Source code in src/acqstore/analysis_pool/base_analysis_pool.py
253 254 255 256 257 258 259 260 261 262 263 264 265 266 | |
Bases: AnalysisPool
Flat pool for velocity, heart-rate, and event summaries.
The table has one row per loaded AcqImage/channel/ROI selection. Base
acquisition columns are followed by analysis summary columns. Shared run
metadata keys such as analysis_date are prefixed per spec
(velocity_analysis_date, hr_analysis_date). Metric keys that
already include the spec prefix, such as velocity_mean, are left
unchanged. Missing analyses leave their columns as pandas.NA.
Source code in src/acqstore/analysis_pool/velocity_analysis_pool.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | |
Flat peak-event table owned by an AcqImageList.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
acq_image_list
|
AcqImageList
|
Collection that owns this pool. |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
If pool column names collide. |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 | |
columns
property
¶
columns: tuple[str, ...]
Return the complete pool column schema.
Returns:
| Type | Description |
|---|---|
tuple[str, ...]
|
Tuple of DataFrame column names. |
dataframe
property
¶
dataframe: DataFrame
Return the live pool DataFrame.
Returns:
| Type | Description |
|---|---|
DataFrame
|
Internal DataFrame object. |
pool_column_names
classmethod
¶
pool_column_names() -> tuple[str, ...]
Return the complete pool column schema.
Returns:
| Type | Description |
|---|---|
str
|
Tuple containing base columns, scalar summary columns, row type, and |
...
|
flattened peak columns. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If any column names collide. |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | |
get_dataframe ¶
get_dataframe(*, copy: bool = True) -> pd.DataFrame
Return the pool DataFrame.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
copy
|
bool
|
When true, return a copy so caller mutations do not affect the pool. When false, return the live DataFrame. |
True
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
Pool DataFrame with one or more rows per file/channel/ROI. |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
132 133 134 135 136 137 138 139 140 141 142 143 144 | |
row_ids_for_selection ¶
row_ids_for_selection(
file_id: str,
*,
channel: int,
roi_id: int,
peak_row_types: Sequence[str] = ('peak',),
) -> tuple[str, ...]
Return pool_row_id values for one file/channel/ROI selection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
peak_row_types
|
Sequence[str]
|
Row types to include. Defaults to detected peak rows only; pass an empty sequence to include all row types for the selection. |
('peak',)
|
Returns:
| Type | Description |
|---|---|
tuple[str, ...]
|
Matching |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | |
rebuild ¶
rebuild() -> None
Rebuild the entire pool from the current AcqImageList state.
Returns:
| Type | Description |
|---|---|
None
|
None. |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
180 181 182 183 184 185 186 187 188 189 190 191 | |
refresh_rows ¶
refresh_rows(
file_id: str, *, channel: int, roi_id: int
) -> None
Create or replace all rows for one file/channel/ROI selection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Raises:
| Type | Description |
|---|---|
KeyError
|
If |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | |
remove_rows ¶
remove_rows(
file_id: str, *, channel: int, roi_id: int
) -> None
Remove all peak rows for one file/channel/ROI selection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | |
refresh_file ¶
refresh_file(file_id: str) -> None
Refresh all rows for one acquisition file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
Raises:
| Type | Description |
|---|---|
KeyError
|
If |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | |
remove_roi ¶
remove_roi(file_id: str, *, roi_id: int) -> None
Remove all rows for one file/ROI across channels.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
roi_id
|
int
|
ROI identifier. |
required |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
254 255 256 257 258 259 260 261 262 263 264 265 | |
to_csv ¶
to_csv(path: str | Path) -> None
Write the current pool DataFrame to CSV.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Destination CSV path. Parent directories are created when needed. |
required |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
267 268 269 270 271 272 273 274 275 276 | |
build_pool_row_id
classmethod
¶
build_pool_row_id(
file_id: str,
*,
channel: int,
roi_id: int,
peak_row_type: str,
peak_id: object = None,
) -> str
Return the canonical unique pool row identifier.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_id
|
str
|
Stable acquisition-file identifier. |
required |
channel
|
int
|
Zero-based channel index. |
required |
roi_id
|
int
|
ROI identifier. |
required |
peak_row_type
|
str
|
Row type such as |
required |
peak_id
|
object
|
Peak identifier for detected peak rows. |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Stable string suitable for GUI unique-row-id contracts. |
Source code in src/acqstore/analysis_pool/sum_intensity_analysis_pool.py
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 | |