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

clean yaml output

Former-commit-id: 29b205655997c2eaf32c1f56da054e14496e658a
parent b7ee28ac
No related branches found
No related tags found
No related merge requests found
import seaborn as sns
from matplotlib import pyplot as plt # TODO DELETE THIS
from typing import Tuple, Union, List from typing import Tuple, Union, List
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
...@@ -29,10 +26,10 @@ class pickerParameters(ParametersABC): ...@@ -29,10 +26,10 @@ class pickerParameters(ParametersABC):
{ {
"sequence": [ "sequence": [
# ("lineage", "intersection", "families"), # ("lineage", "intersection", "families"),
("condition", "intersection", "any_present", 0.8), ["condition", "intersection", "any_present", 0.8],
("condition", "intersection", "growing", 40), ["condition", "intersection", "growing", 40],
("condition", "intersection", "present", 8), ["condition", "intersection", "present", 8],
("condition", "intersection", "mother_buds", 5, 0.8), ["condition", "intersection", "mother_buds", 5, 0.8],
# ("lineage", "full_families", "intersection"), # ("lineage", "full_families", "intersection"),
], ],
} }
......
...@@ -49,16 +49,16 @@ class PostProcessorParameters(ParametersABC): ...@@ -49,16 +49,16 @@ class PostProcessorParameters(ParametersABC):
"merger": "/extraction/general/None/area", "merger": "/extraction/general/None/area",
"picker": ["/extraction/general/None/area"], "picker": ["/extraction/general/None/area"],
}, },
"processes": ( "processes": [
( [
"bud_metric", "bud_metric",
[ [
"/extraction/general/None/volume", "/extraction/general/None/volume",
"/extraction/em_ratio/np_max/mean", "/extraction/em_ratio/np_max/mean",
"/extraction/em_ratio/np_max/median", "/extraction/em_ratio/np_max/median",
], ],
), ],
( [
"dsignal", "dsignal",
[ [
"/extraction/general/None/volume", "/extraction/general/None/volume",
...@@ -70,7 +70,7 @@ class PostProcessorParameters(ParametersABC): ...@@ -70,7 +70,7 @@ class PostProcessorParameters(ParametersABC):
"/postprocessing/bud_metric/extraction_em_ratio_np_max_mean", "/postprocessing/bud_metric/extraction_em_ratio_np_max_mean",
"/postprocessing/bud_metric/extraction_em_ratio_np_max_median", "/postprocessing/bud_metric/extraction_em_ratio_np_max_median",
], ],
), ],
( (
"aggregate", "aggregate",
[ [
...@@ -93,12 +93,12 @@ class PostProcessorParameters(ParametersABC): ...@@ -93,12 +93,12 @@ class PostProcessorParameters(ParametersABC):
], ],
), ),
# "savgol": ["/extraction/general/None/area"], # "savgol": ["/extraction/general/None/area"],
), ],
}, },
parameters={ parameters={
"prepost": { "prepost": {
"merger": mergerParameters.default(), "merger": mergerParameters.default().to_dict(),
"picker": pickerParameters.default(), "picker": pickerParameters.default().to_dict(),
} }
}, },
outpaths={"aggregate": "/postprocessing/experiment_wide/aggregated/"}, outpaths={"aggregate": "/postprocessing/experiment_wide/aggregated/"},
......
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