Agent skill · Data & Analytics

bio-epitranscriptomics-m6a-peak-calling

Call m6A peaks from MeRIP-seq IP vs input comparisons. Use when identifying m6A modification sites from methylated RNA immunoprecipitation data.

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

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

Facts
Files in the skill folder: 4
SKILL.md size: 2 KB
Bundled scripts: yes
Path: skills/bioskills/m6a-peak-calling/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: MACS3 3.0+ Before using code patterns, verify installed versions match. If versions differ: - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters - 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. # m6A Peak Calling **"Call m6A peaks from my MeRIP-seq data"** → Identify m6A-modified RNA regions by comparing immunoprecipitated (IP) and input samples using statistical enrichment testing. - R: `exomePeak2::exomePeak2()` for GC-bias aware peak calling - CLI: `macs3 callpeak` as an alternative broad peak caller ## exomePeak2 (Recommended) **Goal:** Identify m6A-enriched regions by comparing IP and input samples with GC-bias correction and replicate-aware statistical testing. **Approach:** Provide IP and input BAM files along with a gene annotation to exomePeak2, which models read counts in sliding windows across the transcriptome and calls significant enrichment peaks. ```r library(exomePeak2) # Peak calling with biological replicates result

What's inside
Steps it walks through
  1. Version Compatibility
  2. exomePeak2 (Recommended)
  3. MACS3 Alternative
  4. MeTPeak
  5. Peak Filtering
  6. Related Skills
Ships with 3 files
  • examples/exomepeak2_peaks.R
  • examples/macs3_peaks.sh
  • usage-guide.md
Commands it runs
Call peaks treating input as control
macs3 callpeak \
Filter by fold enrichment and q-value
FC > 2, q < 0.05 typical thresholds
awk '$7 > 2 && $9 < 0.05' peaks.xls > filtered_peaks.bed
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-epitranscriptomics-m6a-peak-calling skill do?

Call m6A peaks from MeRIP-seq IP vs input comparisons. Use when identifying m6A modification sites from methylated RNA immunoprecipitation data.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill m6a-peak-calling --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