🎯

bio-variant-calling-filtering-best-practices

🎯Skill

from gptomics/bioskills

VibeIndex|
What it does

Guides AI agents through best practices for filtering and processing genetic variant calls, ensuring high-quality variant identification by applying rigorous statistical and computational filtering...

bio-variant-calling-filtering-best-practices

Installation

pip installInstall Python package
pip install biopython pysam cyvcf2 pybedtools pyBigWig scikit-allel anndata mygene
git cloneClone repository
git clone https://github.com/your-username/bioSkills.git
Shell ScriptRun shell script
./install-claude.sh # Install globally
Shell ScriptRun shell script
./install-claude.sh --project /path/to/project # Or install to specific project
Shell ScriptRun shell script
./install-claude.sh --list # List available skills

+ 13 more commands

πŸ“– Extracted from docs: gptomics/bioskills
171
-
Last UpdatedJan 29, 2026

Skill Details

SKILL.md

Overview

# bioSkills

A collection of skills that guide AI coding agents (Claude Code, Codex, Gemini) through common bioinformatics tasks.

Project Goal

This repository provides AI agents with expert knowledge for bioinformatics workflows. Each skill contains code patterns, best practices, and examples that help agents generate correct, idiomatic code for common tasks.

Target users range from undergrads learning computational biology to PhD researchers processing large-scale data. The skills cover the full spectrum from basic sequence manipulation to advanced analyses like single-cell RNA-seq and population genetics.

Requirements

Python

  • Python 3.9+
  • biopython, pysam, cyvcf2, pybedtools, pyBigWig, scikit-allel, anndata

```bash

pip install biopython pysam cyvcf2 pybedtools pyBigWig scikit-allel anndata mygene

```

R/Bioconductor

Required for differential expression, single-cell, pathway analysis, and methylation skills.

```r

if (!require('BiocManager', quietly = TRUE))

install.packages('BiocManager')

BiocManager::install(c('DESeq2', 'edgeR', 'Seurat', 'clusterProfiler', 'methylKit'))

```

CLI Tools

```bash

# macOS

brew install samtools bcftools blast minimap2 bedtools

# Ubuntu/Debian

sudo apt install samtools bcftools ncbi-blast+ minimap2 bedtools

# conda

conda install -c bioconda samtools bcftools blast minimap2 bedtools \

fastp kraken2 metaphlan sra-tools bwa-mem2 bowtie2 star hisat2 \

manta delly cnvkit macs3 tobias

```

Installation

Claude Code

```bash

git clone https://github.com/your-username/bioSkills.git

cd bioSkills

./install-claude.sh # Install globally

./install-claude.sh --project /path/to/project # Or install to specific project

./install-claude.sh --list # List available skills

./install-claude.sh --validate # Validate all skills

./install-claude.sh --update # Only update changed skills

./install-claude.sh --uninstall # Remove all bio-* skills

```

Codex CLI

```bash

./install-codex.sh # Install globally

./install-codex.sh --project /path/to/project # Or install to specific project

./install-codex.sh --validate # Validate all skills

./install-codex.sh --update # Only update changed skills

./install-codex.sh --uninstall # Remove all bio-* skills

```

Gemini CLI

```bash

./install-gemini.sh # Install globally

./install-gemini.sh --project /path/to/project # Or install to specific project

./install-gemini.sh --validate # Validate all skills

./install-gemini.sh --update # Only update changed skills

./install-gemini.sh --uninstall # Remove all bio-* skills

```

Codex and Gemini installers convert to the Agent Skills standard (examples/ -> scripts/, usage-guide.md -> references/).

Skill Categories

| Category | Skills | Primary Tools | Description |

|----------|--------|---------------|-------------|

| sequence-io | 9 | Bio.SeqIO | Read, write, convert FASTA/FASTQ/GenBank and 40+ formats |

| sequence-manipulation | 7 | Bio.Seq, Bio.SeqUtils | Transcription, translation, motif search, sequence properties |

| database-access | 10 | Bio.Entrez, BLAST+, SRA toolkit, UniProt API | NCBI/UniProt queries, SRA downloads, BLAST, homology searches |

| alignment-files | 9 | samtools, pysam | SAM/BAM/CRAM viewing, sorting, filtering, statistics, validation |

| variant-calling | 13 | bcftools, cyvcf2, Manta, Delly, VEP, SnpEff | VCF/BCF calling, SVs, filtering, annotation, clinical interpretation |

| alignment | 4 | Bio.Align, Bio.AlignIO | Pairwise and multiple sequence alignment, MSA statistics, alignment I/O |

| phylogenetics | 5 | Bio.Phylo, IQ-TREE2, RAxML-ng | Tree I/O, visualization, ML inference with model selection, ultrafast bootstrap |

| **differential-expr

More from this repository10

🎯
bio-experimental-design-batch-design🎯Skill

Guides researchers in designing and optimizing experimental batches by providing strategies to minimize batch effects, randomize sample allocation, and ensure statistical validity in biological exp...

🎯
bio-methylation-calling🎯Skill

Identifies and quantifies DNA methylation patterns from sequencing data, enabling precise mapping of epigenetic modifications across genomic regions.

🎯
bio-read-qc-fastp-workflow🎯Skill

Automates quality control and preprocessing of raw sequencing reads using fastp, performing adapter trimming, quality filtering, and generating comprehensive QC reports for genomic data.

🎯
bio-metabolomics-normalization-qc🎯Skill

Performs quality control and normalization of metabolomics data, handling batch effects, outlier detection, and data preprocessing to ensure reliable downstream analysis and interpretation of metab...

🎯
bio-flow-cytometry-clustering-phenotyping🎯Skill

Performs automated clustering and phenotyping of flow cytometry data, identifying and characterizing distinct cell populations based on multi-parameter immunophenotyping measurements.

🎯
bio-spatial-transcriptomics-spatial-proteomics🎯Skill

Guides AI agents in generating code for analyzing spatial transcriptomics and proteomics data, enabling computational mapping and integration of gene expression and protein localization within tiss...

🎯
bio-chipseq-qc🎯Skill

Performs quality control and preprocessing of ChIP-seq data, including read alignment assessment, peak calling validation, and signal-to-noise ratio evaluation.

🎯
bio-read-alignment-star-alignment🎯Skill

bio-read-alignment-star-alignment skill from gptomics/bioskills

🎯
bio-genome-assembly-short-read-assembly🎯Skill

bio-genome-assembly-short-read-assembly skill from gptomics/bioskills

🎯
bio-population-genetics-plink-basics🎯Skill

bio-population-genetics-plink-basics skill from gptomics/bioskills