Data & ReproBioinformatics & GenomicsFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-workflow-management-snakemake-workflows

Maintainer FreedomIntelligence · Last updated April 1, 2026

Create and manage Snakemake reproducible bioinformatics workflows.

OpenClawNanoClawAnalysisReproductionbio-workflow-management-snakemake-workflows🧠 bioos extended suitebioos extended bioinformatics suitecreate

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-workflow-management-snakemake-workflows

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • Compatible with Snakemake 7.x, 8.x, and 9.x. For Snakemake 8.0+, use --executor instead of --cluster.
  • rule all: input: expand("results/{sample}_counts.txt", sample=SAMPLES).
  • rule align: input: r1 = "data/{sample}_R1.fq.gz", r2 = "data/{sample}_R2.fq.gz", index = "ref/genome.fa" output: bam = "aligned/{sample}.bam" threads: 8 shell: "bwa mem -t {threads} {input.index} {input.r1} {input.r2} | " "samtools sort -@ {threads} -o {output.bam}".

Source Doc

Excerpt From SKILL.md

config.yaml

samples:

  • sample1
  • sample2
  • sample3

reference: "ref/genome.fa" threads: 8 python

Define samples

SAMPLES = ["A", "B", "C"] CHROMOSOMES = [str(i) for i in range(1, 23)] + ["X", "Y"]

Expand for all combinations

rule all: input: expand("results/{sample}_{chrom}.vcf", sample=SAMPLES, chrom=CHROMOSOMES)

Use cases

  • Use bio-workflow-management-snakemake-workflows for genomics and bioinformatics workflows.
  • Apply bio-workflow-management-snakemake-workflows to sequencing, variant, or omics analysis tasks.

Not for

  • Do not rely on this catalog entry alone for installation or maintenance details.

Upstream Related Skills

  • workflow-management/nextflow-pipelines - Nextflow alternative
  • workflows/rnaseq-to-de - RNA-seq workflow
  • read-qc/fastp-workflow - QC in pipelines

Related skills

Related skills

Back to directory
AG
Data & ReproBioinformatics & Genomics

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test w…

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
AL
Data & ReproBioinformatics & Genomics

alpha-vantage

Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ technical indicators.

Claude CodeAnalysis
K-Dense-AI/claude-scientific-skillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-filtering

Filter alignments by flag, quality, region, or paired status.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproBioinformatics & Genomics

bio-alignment-indexing

Index BAM/CRAM files with samtools index for random access.

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView