nextflow.py
nextflow.py is a Python wrapper around the Nextflow pipeline framework. It lets you run Nextflow pipelines from Python code.
Example
>>> import nextflow
>>> execution = nextflow.run("main.nf", params={"param1": "123"})
>>> print(execution.status)
Table of Contents
- Installing
- Overview
- Full API
- nextflow.models
- nextflow.command
get_execution()
get_process_execution()
get_process_executions()
make_nextflow_command()
make_nextflow_command_config_string()
make_nextflow_command_env_string()
make_nextflow_command_log_string()
make_nextflow_command_params_string()
make_nextflow_command_profiles_string()
make_reports_string()
run()
run_and_poll()
- nextflow.log
- nextflow.io
- Changelog