Comprehensive guides for using BioBuntu
Complete command-line interface documentation
Web interface features and usage
REST API endpoints and integration
Creating and customizing workflows
name: RNA-seq Pipeline
description: Complete RNA-seq analysis
steps:
- name: qc
tool: fastqc
args:
input_file: raw_data/sample.fastq
output_dir: qc/
- name: align
tool: hisat2
depends_on: [qc]
args:
index: genome_index
input_fastq1: raw_data/sample.fastq
output_sam: processed/sample.sam
- name: convert
tool: samtools
depends_on: [align]
args:
input_sam: processed/sample.sam
output_bam: processed/sample.bamYour projects automatically get organized with separate directories for raw data, QC results, processing files, results, reports, logs, and configs.
BioBuntu automatically identifies independent pipeline steps and executes them in parallel for faster analysis.
Built-in wrappers for popular bioinformatics tools make integration seamless and configuration simple.