Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
gptomics avatar

Bio Epitranscriptomics Merip Preprocessing

  • 5 installs
  • 1.1k repo stars
  • Updated July 25, 2026
  • gptomics/bioskills

Align and QC MeRIP-seq IP and input samples with STAR to prepare data for m6A peak calling or differential methylation analysis.

About

Aligns and quality-controls MeRIP-seq IP and input samples using STAR. A developer uses it when preparing MeRIP-seq data for m6A peak calling or differential methylation analysis.

  • STAR alignment of IP and input samples
  • QC prep for downstream m6A analysis

Bio Epitranscriptomics Merip Preprocessing by the numbers

  • 5 all-time installs (skills.sh)
  • Ranked #1,598 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/gptomics/bioskills --skill bio-epitranscriptomics-merip-preprocessing

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs5
repo stars1.1k
Last updatedJuly 25, 2026
Repositorygptomics/bioskills

What it does

Align and QC MeRIP-seq IP and input samples with STAR to prepare data for m6A peak calling or differential methylation analysis.

Files

SKILL.mdMarkdownGitHub ↗

MeRIP-seq Preprocessing

Alignment with STAR

# Build index (once)
STAR --runMode genomeGenerate \
    --genomeDir star_index \
    --genomeFastaFiles genome.fa \
    --sjdbGTFfile genes.gtf

# Align IP and input samples
for sample in IP_rep1 IP_rep2 Input_rep1 Input_rep2; do
    STAR --genomeDir star_index \
        --readFilesIn ${sample}_R1.fastq.gz ${sample}_R2.fastq.gz \
        --readFilesCommand zcat \
        --outSAMtype BAM SortedByCoordinate \
        --outFileNamePrefix ${sample}_
done

QC Metrics

# Index BAMs
for bam in *Aligned.sortedByCoord.out.bam; do
    samtools index $bam
done

# Check IP enrichment
# Good MeRIP: IP should have peaks, input should be uniform
samtools flagstat IP_rep1_Aligned.sortedByCoord.out.bam

IP/Input Correlation

import deeptools.plotCorrelation as pc

# Check replicate correlation
multiBamSummary bins \
    -b IP_rep1.bam IP_rep2.bam Input_rep1.bam Input_rep2.bam \
    -o results.npz

plotCorrelation -in results.npz \
    --corMethod spearman \
    -o correlation.png

Related Skills

  • read-qc/quality-reports - Raw read quality assessment
  • read-alignment/star-alignment - General alignment concepts
  • m6a-peak-calling - Next step after preprocessing

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.