Skip to content

Traitome/oxo-flow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

431 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
oxo-flow logo

oxo-flow

A Rust-native bioinformatics pipeline engine with AI Companion — built from first principles for performance, reproducibility, and developer experience.

CI Crates.io License Rust Platform Docs GitHub Downloads Core Downloads CLI Downloads install with bioconda Conda Web Downloads Ask DeepWiki

Documentation · Workflow Gallery · Roadmap · Contributing · Security


What is oxo-flow?

oxo-flow is a high-performance, modular bioinformatics pipeline engine built from first principles in Rust. It compiles workflows into Directed Acyclic Graphs and orchestrates execution with native concurrency, environment isolation, and AI-powered assistance — all from a single, fast binary.

  • 🔀 DAG-based execution — Automatic dependency resolution, topological ordering, and parallel execution
  • 🤖 AI Companion — Contextual AI across the full workflow lifecycle: natural language pipeline generation (Dashboard), intelligent refinement suggestions (Editor), failure diagnosis (Monitor), and results interpretation (Report). Powered by Claude, OpenAI, DeepSeek, or local Ollama.
  • 💬 Natural language to pipeline — Describe your analysis in plain English; AI generates validated .oxoflow pipelines with step-by-step explanations, tool recommendations, and alternative approaches
  • 📦 Environment management — First-class support for conda, pixi, docker, singularity, and venv with per-rule isolation
  • 🧬 Bioinformatics-first — Purpose-built for genomics workflows with reproducible execution
  • 📊 Workflow reporting — Modular HTML/JSON report generation with execution summaries, resource metrics, and output file browsers
  • 🌐 Professional Web UI — React 19 SPA with contextual ChatUI, cytoscape.js DAG visualization, CodeMirror 6 TOML editor, Vega-Lite charts. Light theme, system fonts, WCAG AA contrast, responsive to mobile.
  • 🔄 Cross-page state persistence — PipelineSession context: chat messages, TOML edits, dry-run results survive all navigation. Single source of truth synchronized across views.
  • Rust performance — Fearless concurrency, zero-cost abstractions, #![forbid(unsafe_code)] across all crates
  • 🔧 Resource-aware scheduling — Jobs declare CPU, memory, GPU, and disk; the scheduler respects constraints across local and cluster backends (SLURM, PBS, SGE, LSF)
  • 🔒 Security hardened — Shell injection prevention, path traversal protection, secret scanning, and per-IP rate limiting
  • 🗄️ Persistent State — Checkpoint-based execution history with JSON persistence; resume interrupted workflows from the last completed rule
  • 🔬 Deterministic diagnostics engine — 30+ error patterns cover tool failures, resource exhaustion, data corruption, and config issues — with auto-fix suggestions
  • 👥 Collaboration primitives — Fork, diff, share, and import pipelines via oxo+https:// links; full audit trail for compliance
  • 🚀 Three deployment modes — Personal workstation, team server with OAuth2, or HPC submit panel — all from the same binary
  • 🌐 Domain-driven web API — 48 RESTful endpoints across 7 domains (workflow, execution, AI, auth, collaboration, observability, data)

Three-Mode Deployment (v0.8)

# Mode 1: Personal workstation (default) — SQLite, localhost, no auth
oxo-flow serve

# Mode 2: Team server — SQLite/PG, 0.0.0.0, ORCID/GitHub OAuth2
oxo-flow serve --mode team --db postgres://...

# Mode 3: HPC submit panel — Web UI for cluster job submission
oxo-flow serve --mode hpc --scheduler slurm

Why oxo-flow?

Feature oxo-flow Snakemake Nextflow
Language Rust — compiled, type-safe, #![forbid(unsafe_code)] Python Groovy/JVM
Performance Native binary, zero interpreter overhead Python startup overhead JVM startup overhead
Workflow format TOML (.oxoflow) — declarative, composable Snakefile / .smk (Python DSL) Nextflow DSL (.nf) (Groovy DSL)
Environment support conda, pixi, docker, singularity, venv — per-rule conda, singularity, docker conda, docker, singularity, modules
Web interface Built-in REST API with session auth and rate limiting External Snakemake-UI Nextflow Tower (commercial)
Reporting Built-in HTML/JSON run reports with metrics Via MultiQC Via Nextflow Tower
Container packaging Multi-stage builds, rootless containers Singularity/Docker Docker/Singularity
Cluster backends SLURM, PBS, SGE, LSF SLURM, PBS, SGE, LSF SLURM, PBS, SGE, LSF, k8s
Type safety Type-state lifecycle, RuleBuilder, newtypes Dynamic Python Dynamic Groovy
Security Shell sanitization, path traversal prevention, rate limiting Limited Limited
Startup time Instant — native binary Seconds (Python import) Seconds (JVM boot)
Reproducibility Config checksums, execution provenance, deterministic DAG Checksums, provenance Checksums, provenance
AI Companion Built-in contextual AI (generate, refine, diagnose, interpret) Not built-in Not built-in
Web UI React 19 SPA with DAG visualization, TOML editor, live monitor External Snakemake-UI Nextflow Tower (commercial)
Testing 890 unit tests + 100 browser E2E scenarios pytest-based Varied

Design Principles

oxo-flow is built on six engineering and scientific principles:

  1. DAG is the fundamental abstraction — Every bioinformatics workflow is a directed acyclic graph of tasks. The engine natively constructs, validates, optimizes, and executes DAGs with maximum parallelism.

  2. Environment isolation is non-negotiable — Bioinformatics tools have conflicting dependencies. Each task runs in its own isolated environment (conda, pixi, docker, singularity, venv).

  3. Reproducibility through determinism — Given the same inputs, configuration, and environment specifications, the pipeline produces identical outputs. Config checksums, execution provenance, and container pinning guarantee this.

  4. Performance through Rust — Zero-cost abstractions, fearless concurrency, and efficient memory management make Rust the ideal foundation for orchestrating thousands of concurrent bioinformatics tasks.

  5. Reproducible by design — Every step logs its provenance, inputs, outputs, software versions, and execution environment. Config checksums and container pinning guarantee consistent results.

  6. Outcome-driven design — Workflows are structured around the desired deliverables (report, publication figure, QC dashboard). The DAG engine's target-aware execution (-t flag) computes the minimal set of rules needed to produce specific outputs.

Workflow Gallery

Learn oxo-flow incrementally with curated, validated example workflows — from a one-rule hello-world to production-grade multi-omics pipelines:

# Workflow Complexity Domain
01 Hello World General
02 File Pipeline ⭐⭐ Data processing
03 Parallel Samples ⭐⭐ Batch processing
04 Scatter-Gather ⭐⭐⭐ Parallel computing
05 Environment Management ⭐⭐⭐ DevOps
06 RNA-seq Quantification ⭐⭐⭐⭐ Transcriptomics
07 WGS Germline Calling ⭐⭐⭐⭐⭐ Genomics
08 Multi-Omics Integration ⭐⭐⭐⭐⭐ Multi-omics
09 Single-Cell RNA-seq ⭐⭐⭐⭐ Single-cell
10 Transform Operator ⭐⭐⭐ Parallel computing

Every workflow passes oxo-flow validate and is tested in CI. See the full Workflow Gallery documentation for detailed explanations, DAG visualizations, and CLI output.

Quick Start

Install from pre-built binaries

Download the latest release for your platform from GitHub Releases:

# Linux (x86_64)
curl -LO https://github.com/Traitome/oxo-flow/releases/latest/download/oxo-flow-x86_64-unknown-linux-gnu.tar.gz
tar xzf oxo-flow-x86_64-unknown-linux-gnu.tar.gz
sudo mv oxo-flow /usr/local/bin/

# macOS (Apple Silicon)
curl -LO https://github.com/Traitome/oxo-flow/releases/latest/download/oxo-flow-aarch64-apple-darwin.tar.gz
tar xzf oxo-flow-aarch64-apple-darwin.tar.gz
sudo mv oxo-flow /usr/local/bin/

Install with cargo

cargo install oxo-flow-cli

Install with Conda

conda install -c bioconda oxo-flow-cli

Build from source

git clone https://github.com/Traitome/oxo-flow.git
cd oxo-flow
cargo build --release --workspace

# Install the CLI to your local cargo bin directory:
cargo install --path crates/oxo-flow-cli

# Binaries are in target/release/
# - oxo-flow        (CLI)
# - oxo-flow-web    (Web server)

First workflow

# Create a new pipeline project (creates my-pipeline/ directory and my-pipeline.oxoflow)
oxo-flow init my-pipeline
cd my-pipeline

# Validate the workflow
oxo-flow validate my-pipeline.oxoflow

# Preview execution plan
oxo-flow dry-run my-pipeline.oxoflow

# Execute with 8 parallel jobs
oxo-flow run my-pipeline.oxoflow -j 8

# Visualize the DAG (use -f dot for Graphviz DOT output)
oxo-flow graph my-pipeline.oxoflow -f dot > dag.dot
dot -Tpng dag.dot -o dag.png

# Generate an HTML report
oxo-flow report my-pipeline.oxoflow -f html -o report.html

Cluster / HPC

oxo-flow supports job submission to HPC cluster schedulers including SLURM, PBS/PBS Pro, SGE/UGE, and LSF. The oxo-flow cluster subcommand manages the full submission lifecycle.

# Submit a workflow to a SLURM cluster
oxo-flow cluster submit workflow.oxoflow --backend slurm --queue short -o jobs/

# Check submission status
oxo-flow cluster status --id <job-id>

# Cancel a submitted job
oxo-flow cluster cancel --id <job-id>

Supported backends: slurm, pbs, sge, lsf. Configure cluster profiles with oxo-flow profile for reusable queue, walltime, and resource defaults.

Workflows can also be executed directly on a cluster without the submit subcommand by using a profile:

# List available profiles
oxo-flow profile list

# Run a workflow using a SLURM profile
oxo-flow run workflow.oxoflow --profile slurm

Workflow Format (.oxoflow)

oxo-flow uses a TOML-based workflow format that is human-readable, composable, and declarative:

[workflow]
name = "variant-calling"
version = "0.6.0"

[config]
reference = "/data/ref/GRCh38.fa"

[[rules]]
name = "fastp"
input = ["raw/{sample}_R1.fastq.gz", "raw/{sample}_R2.fastq.gz"]
output = ["trimmed/{sample}_R1.fastq.gz", "trimmed/{sample}_R2.fastq.gz"]
threads = 8
shell = "fastp -i {input[0]} -I {input[1]} -o {output[0]} -O {output[1]}"

[rules.environment]
conda = "envs/fastp.yaml"

[[rules]]
name = "bwa_align"
input = ["trimmed/{sample}_R1.fastq.gz", "trimmed/{sample}_R2.fastq.gz"]
output = ["aligned/{sample}.bam"]
threads = 16
memory = "32G"
shell = "bwa-mem2 mem -t {threads} {config.reference} {input[0]} {input[1]} | samtools sort -o {output[0]}"

[rules.environment]
docker = "biocontainers/bwa-mem2:2.2.1"

Wildcards like {sample} are expanded automatically based on input file discovery or explicit configuration, enabling concise and powerful pattern-based pipeline definitions.

Reference Directory Convention

Set a base directory and let oxo-flow derive standard paths:

reference_dir = "/data/references/GRCh38"

# Auto-derived:
# - reference_fasta → /data/references/GRCh38/genome.fa
# - gene_annotation → /data/references/GRCh38/genes.gtf
# - bwa_index → /data/references/GRCh38/bwa/genome.fa
# ... etc.

# Override specific paths:
reference_fasta = "/custom/path/genome.fa"

Environment Groups

Share environments across multiple rules:

[env_groups.qc]
conda = "envs/qc.yaml"

[[rules]]
name = "fastqc"
env_group = "qc"

[[rules]]
name = "multiqc"
env_group = "qc"  # Reuses same environment

Optional Rules

Rules can be marked as optional to skip execution when inputs are missing:

[[rules]]
name = "optional_qc"
input = ["{sample}_extra.fastq"]  # May not exist for all samples
output = ["{sample}_extra_qc.html"]
shell = "fastqc {input}"
optional = true  # Skip gracefully if input missing

Directory Input

Track all files in a directory for modification detection:

[[rules]]
name = "process_dir"
input = { dir = "data/raw/", pattern = "*.fastq" }  # Optional glob pattern
output = ["results/processed/"]
shell = "process-dir {input} -o {output}"

CLI Commands

The oxo-flow binary provides 31 subcommands covering the complete workflow lifecycle: run, validate, dry-run, resume, graph, report, init, cluster, serve, completions, and more. See the full CLI Reference for details.

Cluster / HPC

oxo-flow supports job submission to HPC cluster schedulers including SLURM, PBS/PBS Pro, SGE/UGE, and LSF. The oxo-flow cluster subcommand manages the full submission lifecycle.

# Submit a workflow to a SLURM cluster
oxo-flow cluster submit workflow.oxoflow --backend slurm --queue short -o jobs/

# Check submission status
oxo-flow cluster status --id <job-id>

# Cancel a submitted job
oxo-flow cluster cancel --id <job-id>

Supported backends: slurm, pbs, sge, lsf. Configure cluster profiles with oxo-flow profile for reusable queue, walltime, and resource defaults.

Workflows can also be executed directly on a cluster without the submit subcommand by using a profile:

# List available profiles
oxo-flow profile list

# Run a workflow using a SLURM profile
oxo-flow run workflow.oxoflow --profile slurm

Workflow Format (.oxoflow)

oxo-flow uses a TOML-based workflow format that is human-readable, composable, and declarative:

[workflow]
name = "variant-calling"
version = "0.6.0"

[config]
reference = "/data/ref/GRCh38.fa"

[[rules]]
name = "fastp"
input = ["raw/{sample}_R1.fastq.gz", "raw/{sample}_R2.fastq.gz"]
output = ["trimmed/{sample}_R1.fastq.gz", "trimmed/{sample}_R2.fastq.gz"]
threads = 8
shell = "fastp -i {input[0]} -I {input[1]} -o {output[0]} -O {output[1]}"

[rules.environment]
conda = "envs/fastp.yaml"

[[rules]]
name = "bwa_align"
input = ["trimmed/{sample}_R1.fastq.gz", "trimmed/{sample}_R2.fastq.gz"]
output = ["aligned/{sample}.bam"]
threads = 16
memory = "32G"
shell = "bwa-mem2 mem -t {threads} {config.reference} {input[0]} {input[1]} | samtools sort -o {output[0]}"

[rules.environment]
docker = "biocontainers/bwa-mem2:2.2.1"

Wildcards like {sample} are expanded automatically based on input file discovery or explicit configuration, enabling concise and powerful pattern-based pipeline definitions.

Reference Directory Convention

Set a base directory and let oxo-flow derive standard paths:

reference_dir = "/data/references/GRCh38"

# Auto-derived:
# - reference_fasta → /data/references/GRCh38/genome.fa
# - gene_annotation → /data/references/GRCh38/genes.gtf
# - bwa_index → /data/references/GRCh38/bwa/genome.fa
# ... etc.

# Override specific paths:
reference_fasta = "/custom/path/genome.fa"

Environment Groups

Share environments across multiple rules:

[env_groups.qc]
conda = "envs/qc.yaml"

[[rules]]
name = "fastqc"
env_group = "qc"

[[rules]]
name = "multiqc"
env_group = "qc"  # Reuses same environment

Optional Rules

Rules can be marked as optional to skip execution when inputs are missing:

[[rules]]
name = "optional_qc"
input = ["{sample}_extra.fastq"]  # May not exist for all samples
output = ["{sample}_extra_qc.html"]
shell = "fastqc {input}"
optional = true  # Skip gracefully if input missing

Directory Input

Track all files in a directory for modification detection:

[[rules]]
name = "process_dir"
input = { dir = "data/raw/", pattern = "*.fastq" }  # Optional glob pattern
output = ["results/processed/"]
shell = "process-dir {input} -o {output}"

CLI Commands

The oxo-flow binary provides 31 subcommands for the complete workflow lifecycle:

Command Description
oxo-flow run Execute a workflow (-j parallel jobs, -k keep-going, --timeout per-job)
oxo-flow dry-run Simulate execution — show what would run without executing
oxo-flow validate Validate an .oxoflow file for syntax and semantic correctness (--as-include for sub-workflows)
oxo-flow graph Output the workflow DAG for visualization (-f ascii|dot|dot-clustered|tree)
oxo-flow report Generate execution reports (-f html|json, -o output path)
oxo-flow batch Execute command templates in parallel across multiple items (lightweight alternative to full workflows)
oxo-flow env Manage software environments (list, check)
oxo-flow package Package workflow into a container image (-f docker|singularity)
oxo-flow serve Start the web interface (--host, -p port, default: 127.0.0.1:8080)
oxo-flow init Scaffold a new pipeline project (-d output directory)
oxo-flow status Show execution status from the checkpoint file
oxo-flow clean Clean workflow outputs and temporary files (-n dry-run, --force)
oxo-flow config Inspect and manage workflow configuration (show, stats)
oxo-flow completions Generate shell completions (bash, zsh, fish, elvish, PowerShell)
oxo-flow format Reformat a .oxoflow file into canonical TOML form
oxo-flow lint Run best-practice linting checks on a .oxoflow file
oxo-flow profile Manage execution profiles (local, SLURM, PBS, SGE, LSF)
oxo-flow export Export a workflow to a container definition or standalone TOML
oxo-flow cluster Manage cluster job submission and monitoring (submit, status, cancel)
oxo-flow diff Compare two .oxoflow workflow files and show differences
oxo-flow debug Show expanded commands after variable substitution
oxo-flow touch Mark workflow outputs as up-to-date without re-executing
oxo-flow template Generate a workflow from a gallery template (oxo-flow template lists all)
oxo-flow watch Watch a workflow file for changes and re-validate automatically
oxo-flow resume Resume an interrupted workflow from a checkpoint file
oxo-flow provenance Verify output file integrity against stored checksums
oxo-flow schema Output the JSON Schema for the .oxoflow format
oxo-flow test Run a workflow in test mode: validate + lint + dry-run
oxo-flow publish Bundle a workflow with its environment files for sharing

Validate Sub-Workflows

When validating a sub-workflow that will be included via [[include]]:

oxo-flow validate rules/qc.oxoflow --as-include

This skips DAG validation since fragments don't have complete dependency graphs.

Web API

The oxo-flow serve command starts an axum-powered REST server with 48 endpoints across 7 domains (Observability, Pipeline, Execution, AI, Auth, Data, Ops). Full API reference at the OpenAPI 3.1 spec.

oxo-flow is organized as a Cargo workspace with three crates:

oxo-flow/
├── crates/
│   ├── oxo-flow-core/     # Core library: DAG engine, executor, environment mgmt,
│   │                      # config parsing, scheduler, wildcard expansion, reporting
│   ├── oxo-flow-cli/      # CLI binary ("oxo-flow") — Clap-based, 31 subcommands
│   └── oxo-flow-web/      # Web server ("oxo-flow-web") — axum REST API + frontend
├── examples/              # Example .oxoflow workflows
├── tests/                 # Integration tests
└── docs/                  # Documentation (MkDocs)
Crate Type Binary License
oxo-flow-core Library Apache-2.0
oxo-flow-cli Binary oxo-flow Apache-2.0
oxo-flow-web Binary oxo-flow-web Dual Academic / Commercial

Core modules

Module Responsibility
dag.rs DAG construction, validation, topological sort
executor.rs Task execution (local, cluster, cloud)
environment.rs Environment management (conda, pixi, docker, singularity, venv)
config.rs Workflow configuration and .oxoflow file parsing
rule.rs Rule/step definitions with inputs, outputs, shell, resources
scheduler.rs Job scheduling with resource constraints
wildcard.rs Wildcard pattern expansion ({sample}, {chr}, etc.)
report.rs Modular report generation (HTML/PDF/JSON from Tera templates)
diagnostics.rs Deterministic error pattern matching (30+ patterns)
ai_provider.rs Multi-provider AI abstraction (Claude, OpenAI, DeepSeek, Ollama)
domains/ai/ AI translation, chat SSE streaming, agent orchestration
domains/execution/ Run lifecycle, diagnostics, pause/resume, retry
domains/workflow/ Pipeline CRUD, validation, DAG building, templating

Documentation

Comprehensive documentation is available at traitome.github.io/oxo-flow/documentation/.

📖 Documentation Quick Links

If you are... Recommended Start
New to oxo-flow Quick Start · First Workflow
A Bioinformatician Workflow Gallery
A Pipeline Engineer Workflow Format Specification · CLI Reference
A DevOps/Cloud Admin Environment Management · Running on Cluster
A Bioinformatics Core Workflow Gallery · Environment Management

MkDocs source lives under docs/guide/src/.

Development

# Build all workspace crates
cargo build

# Run all tests (unit + integration)
cargo test

# Run the full CI suite (format + clippy + build + test)
make ci

# Individual CI steps
cargo fmt -- --check          # Check formatting
cargo clippy -- -D warnings   # Lint (zero warnings)
cargo build                   # Compile
cargo test                    # Test

# Format code
cargo fmt

Tech stack

Component Technology
Language Rust (2024 edition)
Async runtime tokio
CLI framework clap (derive)
Web framework axum
Serialization serde + TOML
Graph library petgraph
Templating tera
Error handling thiserror (lib) / anyhow (bin)
Logging tracing

License

This project uses a split licensing model:

Crate License Details
oxo-flow-core Apache-2.0 Free and open-source
oxo-flow-cli Apache-2.0 Free and open-source
oxo-flow-web Academic / Commercial Free for academic and non-commercial use; commercial use requires a separate license

The core library and CLI are licensed under the Apache License 2.0 — you are free to use, modify, and distribute them without restriction.

The web interface (oxo-flow-web) is available under a dual license: free for academic and non-commercial use under the Academic License, and requiring a commercial license for commercial deployments. See LICENSE-ACADEMIC and LICENSE-COMMERCIAL for details.

Contributing

Contributions are welcome! Please see:

Before submitting a PR, ensure all checks pass:

make ci

Citing

If you use oxo-flow in academic research, please cite:

Shixiang Wang, oxo-flow: compiled, memory-safe bioinformatics workflow orchestration, bioRxiv, 2026, https://doi.org/10.64898/2026.06.11.731578

Jia Ding, Yun Peng, Ruochen Wei, Boquan Wang, Jian-Guo Zhou, Shixiang Wang, BLIT: an R package for seamless integration of command-line bioinformatics tool universe, Bioinformatics Advances, Volume 6, Issue 1, 2026, vbag088, https://doi.org/10.1093/bioadv/vbag088

Community

🧪 We Need Your Real-World Feedback

oxo-flow aims to be a production-ready bioinformatics pipeline engine that works reliably across diverse computing environments — from laptops to institutional HPC clusters with SLURM/PBS/SGE/LSF schedulers, GPU nodes, and complex software ecosystems.

During development, we've encountered a fundamental challenge: While we have comprehensive unit and integration tests, we cannot replicate the full diversity of real-world deployment scenarios in CI:

  • Cluster configurations vary widely (different schedulers, policies, module systems)
  • Bioinformatics tools have complex dependency chains and environment quirks
  • GPU computing setups differ significantly between sites
  • Data scales from gigabytes to petabytes introduce unique scaling challenges
  • Workflow patterns in real research are more diverse than any test suite can cover

Your feedback is critical. If you use oxo-flow — whether it works perfectly or breaks — please share your experience:

  • Success stories — What worked? What hardware/software environment?
  • Failures — Error messages, cluster type, workflow snippet if possible
  • ⚠️ Unexpected behavior — Things that "worked" but seemed wrong or confusing
  • 🚀 Feature requests — What would make your life easier?

📬 Open a GitHub Issue with the prefix [Real-World Testing] — we actively monitor and respond to these reports. Your feedback directly shapes our priorities and helps us build a tool that truly serves the bioinformatics community.

Additional Resources


Built with 🧬 by Traitome

About

(Experimental) Yet Another bioinformatics workflow engine https://traitome.github.io/oxo-flow/documentation/

Resources

License

Apache-2.0 and 2 other licenses found

Licenses found

Apache-2.0
LICENSE
Unknown
LICENSE-ACADEMIC
Unknown
LICENSE-COMMERCIAL

Code of conduct

Contributing

Security policy

Stars

15 stars

Watchers

2 watching

Forks

Packages

 
 
 

Contributors