Version 0.10 of our nextflow.py library has now been released. This update:
- Adds support for execution resuming.
- You can now specify separate paths for the log file and work directory.
To use the new resume
feature, you can just pass resume=True
when running:
import nextflow
nextflow.run("pipeline.nf", params={"param1": "bad_param"})
nextflow.run("pipeline.nf", params={"param1": "good_param"}, resume=True)