Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f23ceb2d authored by CERUTTI Guillaume's avatar CERUTTI Guillaume
Browse files

keep all times in df output

parent d5a09470
No related branches found
No related tags found
1 merge request!7Manage time in 2D Views
Pipeline #875010 failed
Showing
with 0 additions and 32 deletions
......@@ -84,7 +84,3 @@ class surfaceMeshCellCurvature(gnomonAbstractCellImageQuantification):
self.out_tissue[time] = out_tissue
self.df[time] = cells_to_dataframe(out_tissue.cells, cell_ids=out_tissue.cell_ids())
self.df[time]['time'] = time
if len(self.df) > 0:
self.df = {0: pd.concat([self.df[time] for time in self.df.keys()])}
......@@ -85,7 +85,3 @@ class surfaceMeshCellLayer(gnomonAbstractCellImageQuantification):
self.out_tissue[time] = out_tissue
self.df[time] = cells_to_dataframe(out_tissue.cells, cell_ids=out_tissue.cell_ids())
self.df[time]['time'] = time
if len(self.df) > 0:
self.df = {0: pd.concat([self.df[time] for time in self.df.keys()])}
......@@ -108,7 +108,3 @@ class surfaceMeshCellProperty(gnomonAbstractCellImageQuantification):
self.out_tissue[time] = out_tissue
self.df[time] = cells_to_dataframe(out_tissue.cells, cell_ids=out_tissue.cell_ids())
self.df[time]['time'] = time
if len(self.df)>0:
self.df = {0: pd.concat([self.df[time] for time in self.df.keys()])}
......@@ -101,7 +101,3 @@ class wallMeshImageSignal(gnomonAbstractCellImageQuantification):
self.out_tissue[time] = out_tissue
self.df[time] = cells_to_dataframe(out_tissue.cells, cell_ids=out_tissue.cell_ids())
self.df[time]['time'] = time
if len(self.df) > 0:
self.df = {0: pd.concat([self.df[time] for time in self.df.keys()])}
......@@ -140,7 +140,3 @@ class wallMeshSignalPolarities(gnomonAbstractCellImageQuantification):
self.out_tissue[time] = out_tissue
self.df[time] = cell_walls_to_dataframe(out_tissue.walls, cell_ids=out_tissue.cell_ids())
self.df[time]['time'] = time
if len(self.df) > 0:
self.df = {0: pd.concat([self.df[time] for time in self.df.keys()])}
......@@ -103,7 +103,3 @@ class nucleiCurvatureNukem(gnomonAbstractPointCloudQuantification):
self.out_topomesh[time] = out_topomesh
self.df[time] = topomesh_to_dataframe(out_topomesh, 0)
self.df[time]['time'] = time
if len(self.df)>0:
self.df = {0:pd.concat([self.df[time] for time in self.df.keys()])}
\ No newline at end of file
......@@ -110,7 +110,3 @@ class nucleiLayerEstimation(gnomonAbstractPointCloudQuantification):
self.out_df[time] = out_df
self.data_df[time] = deepcopy(out_df)
self.data_df[time]['time'] = time
if len(self.data_df)>0:
self.data_df = {0: pd.concat([self.data_df[time] for time in self.data_df.keys()])}
......@@ -93,7 +93,3 @@ class surfaceMeshProperty(gnomonAbstractPointCloudQuantification):
self.out_df[time] = out_df
self.data_df[time] = deepcopy(out_df)
self.data_df[time]['time'] = time
if len(self.data_df)>0:
self.data_df = {0: pd.concat([self.data_df[time] for time in self.data_df.keys()])}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment