Skip to content
Snippets Groups Projects
Commit 76048ae0 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

refactor(pipeline): overwrite before filecheck

parent fc286f99
No related branches found
No related tags found
No related merge requests found
......@@ -648,6 +648,18 @@ class Pipeline(ProcessABC):
meta = MetaData(directory, filename)
from_start = True if np.any(ow.values()) else False
# New experiment or overwriting
if (
from_start
and (
config.get("overwrite", False) == True
or np.all(list(ow.values()))
)
and filename.exists()
):
os.remove(filename)
# If no previous segmentation and keep tiler
if filename.exists():
if not ow["tiler"]:
......@@ -694,13 +706,6 @@ class Pipeline(ProcessABC):
overwrite=True,
)
if from_start: # New experiment or overwriting
if (
config.get("overwrite", False) is True
or np.all(list(ow.values()))
) and filename.exists():
os.remove(filename)
meta.run()
meta.add_fields( # Add non-logfile metadata
{
......
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