Extract sequences from BAM, CRAM, or PAF/FASTA files using BED coordinates. A tool for sequence extraction that handles structural variants, insertions, and complex alignments.
bedpull extracts sequences from alignment files (BAM/CRAM) or assemblies (FASTA via PAF alignments) based on BED region coordinates. Unlike traditional coordinate lifting tools like liftOver, bedpull uses CIGAR-aware extraction to correctly handle:
- Large insertions and deletions
- Structural variants
- Complex rearrangements
- Phased haplotype assemblies (
--hap_split) - Large SVs split across multiple PAF alignment records (
--stitch_records)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
git clone https://github.com/Psy-Fer/bedpull
cd bedpull
cargo build --release
./target/release/bedpull --helpAdd /<top dir>/bedpull/target/release/ to your $PATH for easy use of the bedpull binary
rustup target add x86_64-unknown-linux-musl
RUSTFLAGS='-C link-arg=-s'
cargo build --release --target x86_64-unknown-linux-musl
./target/x86_64-unknown-linux-musl/release/bedpull --help
You can then copy that binary across and use it.
- Rust 1.85 or higher (edition 2024)
- BAM/CRAM files must be coordinate-sorted (bedpull auto-builds a missing
.bai/.craiindex) - FASTA files used with
--reference/--query_refget a missing.faiindex auto-built too
bedpull --bam alignments.bam \
--bed regions.bed \
--output sequences.fastabedpull --cram alignments.cram \
--reference reference.fasta \
--bed regions.bed \
--output sequences.fasta--reference is only required for reference-compressed CRAMs; CRAMs with embedded sequences don't need it.
bedpull --paf assembly_to_reference.paf \
--query_ref assembly.fasta \
--bed regions.bed \
--output sequences.fastabedpull --help always reflects the current flag set; the full reference (with
defaults, mode restrictions, and validation rules) is in
docs/src/cli-reference.md. The most commonly used flags:
| Flag | Mode | Description |
|---|---|---|
-b, --bam <FILE> |
BAM | Coordinate-sorted BAM file (index auto-built if missing) |
--cram <FILE> |
CRAM | CRAM file (index auto-built if missing) |
-f, --reference <FILE> |
CRAM | Reference FASTA for reference-compressed CRAMs |
--paf <FILE> |
PAF | PAF alignment file with a cg:Z: CIGAR tag |
--query_ref <FILE> |
PAF | Query FASTA to extract from (required with --paf) |
-r, --bed <FILE> |
all | BED file of target regions (required) |
-o, --output <FILE> |
all | Output file; - for stdout (default) |
--fastq |
BAM, CRAM | Write FASTQ instead of FASTA |
--min_mapq <N> |
BAM, CRAM | Minimum mapping quality (0 = no filter) |
--partial / --min_partial_coverage <F> |
BAM, CRAM | Include partially-overlapping reads / minimum coverage fraction |
--flanks <N> / --lflank <N> / --rflank <N> |
all | Expand the extraction window before the CIGAR walk |
--hap_split |
BAM, CRAM, PAF | Split output into per-haplotype files by HP/hp:i: tag |
--dedup |
all | Emit each read/contig only once across all BED regions |
--stitch_records / --max_stitch_gap <N> |
PAF | Stitch a region across multiple chained PAF records when no single record spans it |
--bed_out <FILE> |
PAF | Write lifted-over query coordinates as BED6 |
--unmapped <FILE> |
all | Write regions that produced no output, with reasons |
--debug |
all | Verbose per-region/per-read diagnostics |
-h, --help / -V, --version |
- | Print help / version |
Extract repeat regions from phased assemblies to create ground truth genotypes for benchmarking:
# Extract STR loci from HG002 paternal haplotype
bedpull --paf hg002pat_to_hs1.paf \
--query_ref hg002_paternal.fasta \
--bed clinical_str_sites.bed \
--output hg002_str_sequences.fastaCorrectly extract sequences spanning large insertions or deletions:
Example: RFC1 locus with 520bp insertion
Using liftover to get regions
liftOver ./rfc1.bed hg002pat_to_hs1.chain hg002_paternal_regions_rfc1.bed unmapped_pat_rfc1.bed
Results:
Reference (hs1): chr4:39318077-39318136 (59 bp)
HG002 paternal (liftover): chr4_PATERNAL:39438551-39438610 (59bp)
HG002 paternal (bedpull): chr4_PATERNAL:39438031-39438610 (579 bp)
Insertion captured by bedpull: 520 bp
liftover misses the 520bp insertion, but bedpull picks it up
Extract similar regions from maternal and paternal haplotypes:
# Maternal haplotype
bedpull --paf hg002mat_to_ref.paf \
--query_ref hg002_maternal.fasta \
--bed regions.bed \
--output maternal_sequences.fasta
# Paternal haplotype
bedpull --paf hg002pat_to_ref.paf \
--query_ref hg002_paternal.fasta \
--bed regions.bed \
--output paternal_sequences.fastabedpull doesn't build consensus sequences itself. Pair it with
poa-consensus, a banded partial-order
alignment tool built for that purpose. Use --hap_split to bin reads from a
BAM's HP tag (or a PAF's hp:i: tag) into one FASTA per haplotype, then run
poa-consensus on each file to get a per-haplotype consensus. Use a single-region
BED (or one BED file per locus) so each haplotype FASTA holds reads from only
that region; poa-consensus builds one consensus per input file.
# 1. Extract reads for one region, split by haplotype
bedpull --bam alignments.bam \
--bed rfc1.bed \
--hap_split \
--output rfc1_reads.fasta
# -> rfc1_reads.h0.fasta (unphased), rfc1_reads.h1.fasta, rfc1_reads.h2.fasta
# 2. Install poa-consensus (one-time)
cargo install poa-consensus --features cli
# 3. Build a consensus for each phased haplotype
poa-consensus rfc1_reads.h1.fasta > rfc1_h1_consensus.fasta
poa-consensus rfc1_reads.h2.fasta > rfc1_h2_consensus.fasta- For each BED region, find overlapping alignments
- Use CIGAR string to calculate exact query positions
- Extract the aligned portion of the read sequence
- Handles insertions, deletions, and clipping
- Builds an index of the PAF file (
*.paf.idx) - For each BED region, query the index for overlapping alignments
- Use CIGAR string to calculate exact query positions
- Extract sequence from the query FASTA file using calculated positions
- Return sequences with both reference and query coordinates in header
- Write bed file with query coordinates
- With
--stitch_records, if no single record spans the region, look for a chain of records (same query contig and strand, contiguous in target space) that together do, and extract one sequence across the whole chain
Traditional coordinate conversion tools (like liftOver) fail when:
- Large insertions exist in one assembly
- Structural rearrangements disrupt alignment impacting chain file generation
- Multiple alignment blocks complicate coordinate mapping
bedpull solves this by:
- parsing CIGAR operations of full alignments to get exact coordinates
- stitching a region across multiple chained PAF records when a large SV splits what
would otherwise be one alignment (
--stitch_records) - reporting which input regions produced no output and why, via
--unmapped <file>(similar to liftOver's own-unmappedfile, but across BAM/CRAM/PAF modes)
liftOver is the default most people use, but it isn't the only coordinate lifting option: paftools.js liftover (minimap2's own PAF-based lifter), pslMap (UCSC kent's base-by-base chain projection), and liftOver -multiple + liftOverMerge (liftOver's own multi-hit mode plus a merge step) all perform better compared to plain liftOver. However, against all of them, bedpull (especially with --stitch_records) comes out ahead on every metric, benchmarked on 24,965 real structural variant windows from the GIAB HG002 v5.0q SV truth set (hs1 reference, HG002 T2T-Q100 diploid assembly):
| bedpull | bedpull+stitch | liftOver | paftools.js | pslMap | liftOver -multiple | |
|---|---|---|---|---|---|---|
| Overall recall | 68.1% | 71.6% | 36.7% | 68.0% | 67.2% | 68.2% |
| DEL recall | 65.8% | 69.1% | 5.0% | 65.7% | 64.6% | 65.5% |
| INS recall | 70.5% | 74.2% | 69.8% | 70.4% | 69.9% | 70.9% |
| Recall on SVs ≥5000bp | 91.4% | 92.7% | 44.3% | 85.2% | 91.4% | 70.4% |
| Windows with zero output | 1,420 (5.7%) | 196 (0.8%) | 8,027 (32.2%) | 179 (0.7%) | 3,078 (12.3%) | 252 (1.0%) |
| F1 | 0.810 | 0.834 | 0.537 | 0.809 | 0.804 | 0.811 |
| Detection AUC | 0.919 | 0.974 | 0.596 | 0.969 | 0.850 | 0.966 |
Precision is 100% for every tool (verified against 24,965 size-matched negative-control windows), so the recall/F1/AUC differences above reflect a real difference in what each tool can detect, not a precision/recall tradeoff.
Full methodology, a second independent confirmation leg (hg38↔hs1, official UCSC chain),
and the reasoning behind every result: benchmark/README.md.
Standard 3-column BED format (0-based):
chr1 1000 2000
chr2 5000 5500
Optional 4th column for region names:
chr1 1000 2000 region1
chr4 39318077 39318136 RFC1
Must be coordinate-sorted. If the .bai index is missing, bedpull builds it
automatically the first time you run it against that file:
samtools view -bS example.sam | samtools sort -o example.bam
bedpull --bam example.bam --bed regions.bed --output out.fasta
Must be coordinate-sorted. If the .crai index is missing, bedpull builds it
automatically the first time you run it against that file. Pass --reference if the
CRAM is reference-compressed (the common case). A reference-compressed CRAM opened
without --reference decodes sequences incorrectly rather than raising an error, so
pass --reference whenever extracted sequences look empty or garbled.
Standard PAF format from minimap2 or similar aligners. Must include CIGAR string (cg:Z: tag).
Example alignment command:
minimap2 -cx asm5 --cs=long -t 16 reference.fasta query.fasta > alignment.pafIf the .fai index is missing, bedpull builds it automatically the first time
you run it against that file (equivalent to samtools faidx assembly.fasta).
BAM extraction:
>read_name|reference_region|alignment_info
With --partial, a read that doesn't fully span the requested region gets an extra
missing_left=Nbp and/or missing_right=Nbp suffix showing how many reference bases
of the region (or --flanks window) fall outside the read's alignment:
>read1|chr4:39260000-39380000|RFC1|missing_left=3480bp|missing_right=55332bp
Use --min_partial_coverage <0.0-1.0> alongside --partial to drop reads that cover less than
that fraction of the requested window, instead of accepting any overlap however small (similar
to liftOver's -minMatch):
bedpull --bam reads.bam --bed regions.bed --output out.fasta --partial --min_partial_coverage 0.9PAF extraction:
>query_name|chr:ref_start-ref_end|bed_name|query_name:query_start-query_end|strand
>chr4_PATERNAL|chr4:39318077-39318136|RFC1|chr4_PATERNAL:39438031-39438610|+
If you use bedpull in your research, please cite:
GitHub: https://github.com/Psy-Fer/bedpull
MIT License - see LICENSE file for details
James Ferguson (@Psy-Fer)
Garvan Institute of Medical Research
Issues and pull requests welcome!
- bladerunner - STR detection and genotyping
- poa-consensus - Build consensus sequences from reads extracted by bedpull
- samtools - SAM/BAM manipulation
- bedtools - Genome arithmetic
- minimap2 - Sequence alignment
