diff --git a/src/napatrackmater/Trackvector.py b/src/napatrackmater/Trackvector.py index baf13142..b16932eb 100644 --- a/src/napatrackmater/Trackvector.py +++ b/src/napatrackmater/Trackvector.py @@ -269,6 +269,7 @@ def _compute_track_vectors(self): current_y, current_x, radius, + volume, eccentricity_comp_first, eccentricity_comp_second, surface_area, @@ -294,6 +295,7 @@ def _compute_track_vectors(self): dividing_array, number_dividing_array, radius, + volume, eccentricity_comp_first, eccentricity_comp_second, surface_area, @@ -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] @@ -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, diff --git a/src/napatrackmater/_version.py b/src/napatrackmater/_version.py index 12cf1612..08a382fd 100644 --- a/src/napatrackmater/_version.py +++ b/src/napatrackmater/_version.py @@ -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)