
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-preprocessingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 5 |
|---|---|
| repo stars | ★ 1.1k |
| Last updated | July 25, 2026 |
| Repository | gptomics/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
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}_
doneQC 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.bamIP/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.pngRelated 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
Data Science & MLpipelines