Skip to content

Commit

Permalink
remove volume
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoorlab committed Jan 26, 2024
1 parent 563f598 commit f9fb1ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/napatrackmater/Trackvector.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ def _compute_track_vectors(self):
current_y,
current_x,
radius,
volume,
eccentricity_comp_first,
eccentricity_comp_second,
surface_area,
Expand All @@ -294,6 +295,7 @@ def _compute_track_vectors(self):
dividing_array,
number_dividing_array,
radius,
volume,
eccentricity_comp_first,
eccentricity_comp_second,
surface_area,
Expand Down Expand Up @@ -499,7 +501,9 @@ def plot_mitosis_times(self, full_dataframe, save_path=""):
eccentricity_comp_first = spot_properties[self.eccentricity_comp_firstkey]
eccentricity_comp_second = spot_properties[self.eccentricity_comp_secondkey]
radius = spot_properties[self.radius_key]
volume = spot_properties[self.quality_key]
speed = spot_properties[self.speed_key]

motion_angle = spot_properties[self.motion_angle_key]
acceleration = spot_properties[self.acceleration_key]
distance_cell_mask = spot_properties[self.distance_cell_mask_key]
Expand All @@ -515,6 +519,7 @@ def plot_mitosis_times(self, full_dataframe, save_path=""):
"Eccentricity Comp First": eccentricity_comp_first,
"Eccentricity Comp Second": eccentricity_comp_second,
"Radius": radius,
"Volume": volume,
"Speed": speed,
"Motion Angle": motion_angle,
"Acceleration": acceleration,
Expand Down
4 changes: 2 additions & 2 deletions src/napatrackmater/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = version = "4.7.8"
__version_tuple__ = version_tuple = (4, 7, 8)
__version__ = version = "4.7.9"
__version_tuple__ = version_tuple = (4, 7, 9)

0 comments on commit f9fb1ca

Please sign in to comment.