panoptes icon indicating copy to clipboard operation
panoptes copied to clipboard

Investigate option to get a unique snakemake id for each workflow run

Open fgypas opened this issue 4 years ago • 1 comments

Is your feature request related to a problem? Please describe. Let's say that we have a snakemake pipeline that has 30 steps, and let's assume that after 10 steps an error appears. After the pipeline fix, if we run again the pipeline one would assume that it resumes at step 11. What is happening at the moment is that it generates a new workflow id with 20 steps.

Describe the solution you'd like The solution would be to recognize that this is the same pipeline and not something different. Maybe based on the root directory of the pipeline?

fgypas avatar Nov 09 '20 15:11 fgypas

What if it was based on the name? This way, you only had to run it again with the same name:

snakemake [...] --wms-monitor-arg name=test

fgvieira avatar Mar 05 '24 21:03 fgvieira