bio-longread-alignment

Installation
SKILL.md

Long-Read Alignment with minimap2

Oxford Nanopore Alignment

# Basic ONT alignment
minimap2 -ax map-ont reference.fa reads.fastq.gz | \
    samtools sort -o aligned.bam
samtools index aligned.bam

PacBio HiFi Alignment

# PacBio HiFi reads (high accuracy)
minimap2 -ax map-hifi reference.fa reads.fastq.gz | \
    samtools sort -o aligned.bam
samtools index aligned.bam
Installs
4
GitHub Stars
1.1K
First Seen
Jan 23, 2026
bio-longread-alignment — gptomics/bioskills