Agent skill · AI & Agents

differential-methylation

This skill performs differential DNA methylation analysis (DMRs and DMCs) between experimental conditions using WGBS methylation tracks (BED/BedGraph). It standardizes input files into per-sample four-column Metilene tables, constructs a merged methylation matrix, runs Metilene for DMR detection, filters the results, and generates quick visualizations.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill 21-differential-methylation-bisnake2001-chromskills-2 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/21-differential-methylation-bisnake2001-chromskills-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# WGBS Differential Methylation with metilene ## Overview - Refer to the **Inputs & Outputs** section to check available inputs and design the output structure. - **Always prompt user** for which columns in the BED files are methylation fraction/percent. Never decide by yourself. - Convert heterogeneous inputs to a **per‑sample 4‑column Metilene table** (chrom, start, end, methylation_fraction). Sort the BED files after conversion. - Generate the merged bed file as the input of metilene. - **Run metilene**: call DMRs and DMCs with tunable parameters - **Visualize**: quick plots (Δmethylation vs –log10(q), length histograms). --- ## Inputs & Outputs ### Inputs ```bash sample1.bed # raw methylation BED files, standardize it according to the following steps sample2.bed ``` **Assumptions**: All samples share the same reference genome build and chromosome naming scheme. ### Outputs ```bash DMR_DMC_detection/ stats/ dmr_results.txt # raw metilene output. dmc_results.txt significant_dmrs.txt # filtered significant DMRs (TSV). significant_dmrs.bed # BED for genome browser. significant_dmcs.txt significant_dmcs.bed dmr_summary.txt # counts and length statistics. plots/ volcano.pdf length_hi

What's inside
Steps it walks through
  1. Overview
  2. Inputs & Outputs
  3. Inputs
  4. Outputs
  5. Decision Tree
  6. Step 1: Standardize BED file
  7. Step 2: Build the merged methylation matrix (fractions per sample)
  8. Step 3: Run metilene (DMR mode)
  9. Step 4: Run metilene (DMC mode)
  10. Step 5: Filter significant DMRs and export BED
  11. Step 6: Filter significant DMCs and export BED
  12. Step 6: Visualization (quick, optional)
  13. Troubleshooting
Ships with 1 file
  • metadata.json
Commands it runs
sample1.bed # raw methylation BED files, standardize it according to the following steps
sample2.bed
DMR_DMC_detection/
stats/
dmr_results.txt # raw metilene output.
dmc_results.txt
significant_dmrs.txt # filtered significant DMRs (TSV).
significant_dmrs.bed # BED for genome browser.
significant_dmcs.txt
significant_dmcs.bed
More from claude-skill-registry
All skills →
About this skill
What does the differential-methylation skill do?

This skill performs differential DNA methylation analysis (DMRs and DMCs) between experimental conditions using WGBS methylation tracks (BED/BedGraph). It standardizes input files into per-sample four-column Metilene tables, constructs a merged methylation matrix, runs Metilene for DMR detection, filters the results, and generates quick visualizations.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill 21-differential-methylation-bisnake2001-chromskills-2 --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 majiayu000/claude-skill-registry, a repository with 534 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