install
source · Clone the upstream repo
git clone https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bio-reporting-automated-qc-reports" ~/.claude/skills/freedomintelligence-openclaw-medical-skills-bio-reporting-automated-qc-reports && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bio-reporting-automated-qc-reports" ~/.openclaw/skills/freedomintelligence-openclaw-medical-skills-bio-reporting-automated-qc-reports && rm -rf "$T"
manifest:
skills/bio-reporting-automated-qc-reports/SKILL.mdsource content
<!--
# COPYRIGHT NOTICE
# This file is part of the "Universal Biomedical Skills" project.
# Copyright (c) 2026 MD BABU MIA, PhD <md.babu.mia@mssm.edu>
# All Rights Reserved.
#
# This code is proprietary and confidential.
# Unauthorized copying of this file, via any medium is strictly prohibited.
#
# Provenance: Authenticated by MD BABU MIA
-->
name: bio-reporting-automated-qc-reports description: Generates standardized quality control reports by aggregating metrics from FastQC, alignment, and other tools using MultiQC. Use when summarizing QC metrics across samples, creating shareable quality reports, or building automated QC pipelines. tool_type: cli primary_tool: multiqc measurable_outcome: Execute skill workflow successfully with valid output within 15 minutes. allowed-tools:
- read_file
- run_shell_command
Automated QC Reports with MultiQC
Basic Usage
# Aggregate all QC outputs in directory multiqc results/ -o qc_report/ # Specify output name multiqc results/ -n my_project_qc # Include specific tools only multiqc results/ --module fastqc --module star
Supported Tools
MultiQC recognizes outputs from 100+ bioinformatics tools:
| Category | Tools |
|---|---|
| Read QC | FastQC, fastp, Cutadapt |
| Alignment | STAR, HISAT2, BWA, Bowtie2 |
| Quantification | featureCounts, Salmon, kallisto |
| Variant Calling | bcftools, GATK |
| Single-cell | CellRanger, STARsolo |
Configuration
Create
multiqc_config.yaml:
title: "RNA-seq QC Report" subtitle: "Project XYZ" intro_text: "QC metrics for all samples" # Custom sample name cleaning extra_fn_clean_exts: - '.sorted' - '.dedup' # Report sections to include module_order: - fastqc - star - featurecounts # Highlight samples table_cond_formatting_rules: pct_mapped: fail: [{lt: 50}] warn: [{lt: 70}]
Custom Data
# Add custom data file # File format: sample\tmetric1\tmetric2 multiqc results/ --data-format tsv --custom-data-file custom_metrics.tsv
Python API
from multiqc import run as multiqc_run # Run programmatically multiqc_run(analysis_dir='results/', outdir='qc_report/')
Related Skills
- read-qc/quality-reports - Generate input FastQC reports
- read-qc/fastp-workflow - Preprocessing QC
- workflows/rnaseq-to-de - Full workflow with QC