bio-epitranscriptomics-m6a-peak-calling

exomePeak2 (Recommended)

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "bio-epitranscriptomics-m6a-peak-calling" with this command: npx skills add gptomics/bioskills/gptomics-bioskills-bio-epitranscriptomics-m6a-peak-calling

m6A Peak Calling

exomePeak2 (Recommended)

library(exomePeak2)

Peak calling with biological replicates

result <- exomePeak2( bam_ip = c('IP_rep1.bam', 'IP_rep2.bam'), bam_input = c('Input_rep1.bam', 'Input_rep2.bam'), gff = 'genes.gtf', genome = 'hg38', paired_end = TRUE )

Export peaks

exportResults(result, format = 'BED')

MACS3 Alternative

Call peaks treating input as control

macs3 callpeak
-t IP_rep1.bam IP_rep2.bam
-c Input_rep1.bam Input_rep2.bam
-f BAMPE
-g hs
-n m6a_peaks
--nomodel
--extsize 150
-q 0.05

MeTPeak

library(MeTPeak)

GTF-aware peak calling

metpeak( IP_BAM = c('IP_rep1.bam', 'IP_rep2.bam'), INPUT_BAM = c('Input_rep1.bam', 'Input_rep2.bam'), GENE_ANNO_GTF = 'genes.gtf', OUTPUT_DIR = 'metpeak_output' )

Peak Filtering

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

Related Skills

  • merip-preprocessing - Prepare data for peak calling

  • m6a-differential - Compare peaks between conditions

  • chip-seq/peak-calling - Similar concepts

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

bioskills

No summary provided by upstream source.

Repository SourceNeeds Review
General

bio-data-visualization-genome-tracks

No summary provided by upstream source.

Repository SourceNeeds Review
General

bio-epitranscriptomics-merip-preprocessing

No summary provided by upstream source.

Repository SourceNeeds Review
General

bio-data-visualization-multipanel-figures

No summary provided by upstream source.

Repository SourceNeeds Review