Leaderboard/Science/bioSkills
Last commit on July 12, 2026·Created on January 15, 2026

GPTomics/bioSkills

A library of specialized procedures for bioinformatics data processing and genomic analysis.
Combined rank
#266
across all skills
In Science
#4
category rank
Stars
1.2k
+0.3% in last 7d
Forks
244
+2.1% in last 7d
Watchers
20
+5.3% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

This collection provides structured guidance for automating the preprocessing of biological sequence data. It assists bioinformatics engineers in managing complex alignment tasks, from sorting and indexing BAM files to cleaning amplicon-panel data for variant calling.

By focusing on precise tool implementation, the repository helps researchers remove primer-derived bases and filter alignments to ensure that reference footprints do not introduce false positives in clinical or research assays.

WHO IT'S FOR
Bioinformatics engineers
automating alignment file preprocessing with AI agents
Genomics researchers
cleaning amplicon-panel data for variant calling
Computational biologists
validating alignment quality before downstream analysis
AI automation builders
configuring AI agents for bioinformatics workflows
Repository contents

562 skill files

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill collection

Follow the documented setup, then try a first task.

I’m using

Claude Code global installation

Installs: Full bioSkills collection installed globally to ~/.claude/skills/; the clawhub-installer meta-skill is excluded. · Claude Code

Before you start
  • Git with SSH access to git@github.com:GPTomics/bioSkills.git
  • A Bash-compatible environment

Run from: bioSkills repository root

  1. In a terminal, clone the repository.

    git clone git@github.com:GPTomics/bioSkills.git
  2. In the terminal, enter the cloned repository.

    cd bioSkills
  3. From the repository root, run the Claude Code installer in its default global mode.

    ./install-claude.sh                              # Install globally
README.md · Checked Sep 18, 2026install-common.sh · Checked Sep 18, 2026install-claude.sh · Checked Sep 18, 2026

Give it something to do.

Suggested first task

Draft a high-quality BAM filtering command

Uses bio-alignment-filtering

  • Path to an input BAM file, such as [path/to/input.bam]
  • Desired minimum mapping quality
  • Any reads to include or exclude by FLAG
  • Optional BED file or genomic regions
  • samtools 1.19+ for the documented reference patterns
Use the bio-alignment-filtering skill to propose a samtools view command for [path/to/input.bam] that keeps the requested high-quality alignments. Explain the selected -F, -f, -q, or -L filters briefly, but do not run the command. Ask me for any missing MAPQ threshold, FLAG requirements, or BED region path.
install-common.sh · Checked Sep 18, 2026alignment-files/alignment-filtering/SKILL.md · Checked Sep 18, 2026
Suggested first task

Choose and apply a multiple-testing correction

Uses bio-experimental-design-multiple-testing

  • Path to a table containing p-values, such as [path/to/p_values.csv]
  • Name of the p-value column
  • Whether the analysis is discovery or confirmatory
  • Known dependence assumptions, if any
  • R or Python with a documented compatible implementation, such as R p.adjust or statsmodels 0.14+
Use the bio-experimental-design-multiple-testing skill to review the p-values in [path/to/p_values.csv]. First determine whether this is discovery or confirmatory analysis and whether arbitrary dependence is a concern, then recommend one supported correction method and produce adjusted values with a short interpretation of the controlled error rate.
install-common.sh · Checked Sep 18, 2026experimental-design/multiple-testing/SKILL.md · Checked Sep 18, 2026
Suggested first task

Create an initial single-cell clustering

Uses bio-single-cell-clustering

  • A preprocessed single-cell object, such as [path/to/preprocessed.h5ad], or an equivalent Seurat object
  • Whether to use Scanpy or Seurat
  • Scanpy 1.10+ with anndata 0.10+, or Seurat 5.0+
  • Any known batch or biological covariates
Use the bio-single-cell-clustering skill on [path/to/preprocessed.h5ad] to create an initial k-nearest-neighbor graph, Leiden clustering, and UMAP. State the chosen number of PCs, neighbors, resolution, backend, iteration count, and random seed, and flag the clustering as a hypothesis requiring marker and stability validation.
install-common.sh · Checked Sep 18, 2026single-cell/clustering/SKILL.md · Checked Sep 18, 2026