Is it possible to add a Final step to a study #344
-
I can't find a way to have a "final" step in a study that would happen once all the combination of parameters have been run For example if I want to generate a report after a study is finished I "think" I could add a additional step, but I feel like if I have 20 parameters value then that step would be executed 20 times. What I would like is a "post" step to be ran once all the parameter values have been ran. In this case it would for example generate a pdf with pictures from whatever was run by the study, it could also include plots that show data generated for each set of parameters (but all in one figure). Does that makes sense? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@doutriaux1 -- If I'm understanding correctly, you're looking for a "funnel" that will collect all parameterized steps. Maestro does have something like that. In the There is a caveat to the funnel steps though -- all of the combinations being funneled in must succeed. I've been toying with the idea of relaxing this requirement and making it so that it's the user's responsibility to figure out how to handle it if one of the steps fails (since the primary use case would be post processing); but I've not made up my mind on that one. Does that help? Is that what you're looking for @doutriaux1 ? |
Beta Was this translation helpful? Give feedback.
@doutriaux1 -- If I'm understanding correctly, you're looking for a "funnel" that will collect all parameterized steps. Maestro does have something like that. In the
depends
key for a step, you're probably accustomed todepends: [step1, step2]
-- this does a linear dependency on prior steps. If you'd like to funnel all combinations, you can dodepends: [step1_*]
. The_*
is what you're looking for I believe. You can mix and match the funnel behavior with non-funnel dependencies so you can get expansions of it.There is a caveat to the funnel steps though -- all of the combinations being funneled in must succeed. I've been toying with the idea of relaxing this requirement and making it so t…