Skip to content

Commit

Permalink
int -> float
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalbakshi committed Dec 6, 2024
1 parent 44ec968 commit 2b446d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions element_calcium_imaging/imaging_no_curation.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class ZDriftMetrics(dj.Computed):
ProcessingTask (foreign key): Primary key from ProcessingTask.
ZDriftParamSet (foreign key): Primary key from ZDriftParamSet.
z_drift (longblob): Amount of drift in microns per frame in Z direction.
bad_frames_threshold (int): Drift threshold in microns where frames are excluded from registration.
bad_frames_threshold (float): Drift threshold in microns where frames are excluded from registration.
percent_bad_frames (float): Percentage of frames with z-drift exceeding the threshold.
"""

Expand All @@ -307,7 +307,7 @@ class ZDriftMetrics(dj.Computed):
---
bad_frames=NULL: longblob # `True` if any value in z_drift > threshold from drift_params.
z_drift: longblob # Amount of drift in microns per frame in Z direction.
bad_frames_threshold: int # Drift threshold in microns where frames are excluded from registration.
bad_frames_threshold: float # Drift threshold in microns where frames are excluded from registration.
percent_bad_frames: float # Percentage of frames with z-drift exceeding the threshold.
"""

Expand Down

0 comments on commit 2b446d2

Please sign in to comment.