Light-weight Python Computational Pipeline Management
Project description
Overview
The ruffus module is a lightweight way to add support for running computational pipelines.
Computational pipelines are often conceptually quite simple, especially if we breakdown the process into simple stages, or separate tasks.
Each stage or task in a computational pipeline is represented by a python function Each python function can be called in parallel to run multiple jobs.
Ruffus was originally designed for use in bioinformatics to analyse multiple genome data sets.
Documentation
Ruffus documentation can be found here , with an introduction and installation notes , a short 5 minute tutorial and an in-depth tutorial .
Background
The purpose of a pipeline is to determine automatically which parts of a multi-stage process needs to be run and in what order in order to reach an objective (“targets”)
Computational pipelines, especially for analysing large scientific datasets are in widespread use. However, even a conceptually simple series of steps can be difficult to set up and to maintain, perhaps because the right tools are not available.
Design
The ruffus module has the following design goals:
Simplicity. Can be picked up in 10 minutes
Elegance
Lightweight
Unintrusive
Flexible/Powerful
Features
Automatic support for
Managing dependencies
Parallel jobs
Re-starting from arbitrary points, especially after errors
Display of the pipeline as a flowchart
Reporting
A Simple example
Use the @follows(…) python decorator before the function definitions:
from ruffus import * import sys def first_task(): print "First task" @follows(first_task) def second_task(): print "Second task" @follows(second_task) def final_task(): print "Final task"the @follows decorator indicate that the first_task function precedes second_task in the pipeline.
Usage
Each stage or task in a computational pipeline is represented by a python function Each python function can be called in parallel to run multiple jobs.
Import module:
import ruffus
Annotate functions with python decorators
Print dependency graph if you necessary
For a graphical flowchart in jpg, svg, dot, png, ps, gif formats:
graph_printout ( open("flowchart.svg", "w"), "svg", list_of_target_tasks)This requires dot to be installed
For a text printout of all jobs
pipeline_printout(sys.stdout, list_of_target_tasks)Run the pipeline:
pipeline_run(list_of_target_tasks, [list_of_tasks_forced_to_rerun, multiprocess = N_PARALLEL_JOBS])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
File details
Details for the file ruffus-1.1.2.zip
.
File metadata
- Download URL: ruffus-1.1.2.zip
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ec87fb6b9bc06d471bfabf2163c2f4a21ba1049b054ae328c5e8107b634351d |
|
MD5 | 4873955f0ba65eb994275e4419d5d630 |
|
BLAKE2b-256 | d8dc23308bd6f458907e6c2213adb02b52878a2dae73da2e3e360186719a768d |
File details
Details for the file ruffus-1.1.2.tar.gz
.
File metadata
- Download URL: ruffus-1.1.2.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 641019856ea324ebeb8998037ee235dc841cd50c124c47892ed68a20cf539330 |
|
MD5 | ada3f1456cc8b4f81782317e0ac2d7b7 |
|
BLAKE2b-256 | 627516de284be97e3bbd676a6c7e6c9da7d0f801abf14d0468201e84c738ffed |