Agent skill

bio-methylation-bismark-alignment

Bisulfite sequencing read alignment using Bismark with bowtie2/hisat2. Handles genome preparation and produces BAM files with methylation information. Use when aligning WGBS, RRBS, or other bisulfite-converted sequencing reads to a reference genome.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill bismark-alignment --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 5 KB
Bundled scripts: yes
Path: skills/bioskills/bismark-alignment/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: Bowtie2 2.5.3+, HISAT2 2.2.1+, Trim Galore 0.6.10+, samtools 1.19+ Before using code patterns, verify installed versions match. If versions differ: - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Bismark Alignment **"Align my bisulfite sequencing reads"** → Map WGBS/RRBS reads to an in-silico bisulfite-converted reference genome, producing BAM files with methylation context tags. - CLI: `bismark_genome_preparation genome/` then `bismark --genome genome/ reads.fq.gz` ## Prepare Genome Index ```bash # One-time genome preparation (creates bisulfite-converted index) bismark_genome_preparation --bowtie2 /path/to/genome_folder/ # Genome folder should contain FASTA files (e.g., hg38.fa, chr1.fa, etc.) # Creates Bisulfite_Genome/ subdirectory with CT and GA converted indices ``` ## Basic Single-End Alignment ```bash bismark --genome /path/to/genome_folder/ reads.fastq.gz -o output_dir/ ``` ## Paired-End Alignment ```bash bismark --genome /path/to/genome_folder

What's inside
Steps it walks through
  1. Version Compatibility
  2. Prepare Genome Index
  3. Basic Single-End Alignment
  4. Paired-End Alignment
  5. Common Options
  6. RRBS Mode
  7. PBAT Libraries
  8. Non-Directional Libraries
  9. With Quality/Adapter Trimming (Pre-alignment)
  10. Multicore Processing
  11. Output Files
  12. Sort and Index BAM
  13. Deduplicate (Optional)
  14. Check Alignment Statistics
Ships with 2 files
  • examples/bismark_basic.sh
  • usage-guide.md
Commands it runs
One-time genome preparation (creates bisulfite-converted index)
bismark_genome_preparation --bowtie2 /path/to/genome_folder/
Genome folder should contain FASTA files (e.g., hg38.fa, chr1.fa, etc.)
Creates Bisulfite_Genome/ subdirectory with CT and GA converted indices
bismark --genome /path/to/genome_folder/ reads.fastq.gz -o output_dir/
bismark --genome /path/to/genome_folder/ \
reads.fastq.gz
Reduced Representation Bisulfite Sequencing
MspI digestion (RRBS standard)
Bismark handles MspI-digested libraries automatically
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-methylation-bismark-alignment skill do?

Bisulfite sequencing read alignment using Bismark with bowtie2/hisat2. Handles genome preparation and produces BAM files with methylation information. Use when aligning WGBS, RRBS, or other bisulfite-converted sequencing reads to a reference genome.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill bismark-alignment --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going