Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

BioMaster: Automated Bioinformatics Workflows

ID: biomedical.genomics.biomaster Version: 1.1.0 Status: Integrated & Downloaded Category: Genomics / Workflow Orchestration


Overview

BioMaster is a multi-agent system for end-to-end bioinformatics pipelines across multiple omics modalities. It decomposes high-level tasks into reproducible steps with tool-specific parameters and error recovery.


Supported Workflows

  • RNA-seq: QC -> alignment -> quantification -> DEG -> enrichment
  • ChIP-seq: QC -> alignment -> peak calling -> motif analysis
  • Single-cell: QC -> normalization -> clustering -> annotation
  • Hi-C: QC -> alignment -> contact map -> compartment analysis

Inputs

Field Type Notes
config_path str YAML config with tool paths and parameters
input_data str FASTQ, BAM, or h5ad depending on workflow
workflow str rnaseq, chipseq, singlecell, hic

Outputs

  • Standard pipeline outputs (BAM, counts, peak files)
  • QC reports and logs
  • Summary report with parameters and runtime metadata

Quick Start

cd repo
pip install -r requirements.txt
python repo/run.py --config repo/config.yaml

Guardrails

  • Always log tool versions and parameters for reproducibility.
  • Fail fast on missing reference genomes or index files.
  • Require explicit confirmation before deleting intermediate files.

References