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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
## 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
- Version Compatibility
- exomePeak2 (Recommended)
- MACS3 Alternative
- MeTPeak
- Peak Filtering
- Related Skills
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
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.
