Read VCF, BCF, BAM, CRAM, FASTA, FASTQ, BigWig, GTF, GFF, GenBank, BED, and tabix-indexed files directly in DuckDB. DuckHTS uses htslib for HTS formats and provides SQL functions for consequence annotation, intervals, coverage, sequence operations, compression, indexing, and export.
Show generated function catalog
This section is generated from functions.yaml.
| Function | Kind | R helper | Description |
|---|---|---|---|
duckhts_htslib_version |
scalar | rduckhts_htslib_version |
Return the runtime version reported by the htslib library loaded with DuckHTS. Rduckhts uses this value to reject a downstream linking receipt whose source/header version does not match the loaded library. |
duckhts_htslib_features |
scalar | Return the htslib runtime feature bitfield reported by hts_features(). Use duckhts_htslib_feature_string() for the corresponding build description. | |
duckhts_htslib_feature_string |
scalar | Return htslib’s runtime build-feature description, including configured transports, compression libraries, compiler, and build flags. DuckHTS snapshots it once while loading the extension so parallel SQL calls read immutable text. | |
duckhts_simd_backend |
scalar | rduckhts_simd_backend |
Return the current DuckHTS SIMD dispatch label. For explicit scalar or concrete backend requests this is the requested policy; for auto it is the single selected backend when all logical kernels resolve to the same backend, or mixed when per-kernel auto-dispatch resolves to multiple backends. Use duckhts_simd_kernel_info() for per-kernel details. |
duckhts_simd_requested_backend |
scalar | rduckhts_simd_requested_backend |
Return the current explicit SIMD backend request, usually auto unless SELECT backend FROM duckhts_simd_set_backend('auto'|'scalar'|backend) was called. The selected per-kernel backend may differ under auto-dispatch across x86, ARM, wasm, and scalar-only builds. |
duckhts_simd_backend_compiled |
scalar | rduckhts_simd_backend_compiled |
Return whether a concrete DuckHTS SIMD backend was compiled into this build. This is independent of whether the current CPU/runtime supports executing that backend; for example avx512 can be compiled but not CPU-supported on the running host. |
duckhts_simd_backend_cpu_supported |
scalar | rduckhts_simd_backend_cpu_supported |
Return whether the current CPU/runtime supports a concrete DuckHTS SIMD backend, independent of whether DuckHTS compiled an implementation for it. Availability is the intersection of compiled and CPU-supported. |
duckhts_simd_backend_available |
scalar | rduckhts_simd_backend_available |
Return whether a concrete SIMD backend is usable in the current process. Availability means the backend is compiled into DuckHTS and supported by the current CPU/runtime. auto is a selection request rather than a concrete backend and is not reported as available here. |
duckhts_simd_info |
table | rduckhts_simd_info |
Report compiled, runtime-supported and selected status for each concrete DuckHTS SIMD backend. |
duckhts_simd_kernel_info |
table | rduckhts_simd_kernel_info |
Return one row per logical DuckHTS SIMD kernel showing the concrete backend selected by the current immutable dispatch table, the selected capability, the requested backend policy, whether scalar was used as a per-kernel fallback, and the dispatch mode. This is the authoritative diagnostic for mixed auto-dispatch when different kernels resolve to different backends. |
duckhts_simd_set_backend |
table | rduckhts_simd_set_backend |
Explicitly select the DuckHTS SIMD dispatch policy for this process using a one-row table-function call and return the current dispatch label in a backend column. Use auto for per-kernel runtime dispatch or scalar for a portable baseline; unavailable platform-specific requests such as avx512 on non-AVX-512 CPUs raise an error instead of silently falling back. |
duckhts_duckdb_type_supported |
scalar_macro | Return whether the currently open DuckDB runtime advertises a logical type with the given name through duckdb_types(). This is a catalog-level runtime probe for feature gating SQL/macros across DuckDB versions. | |
duckhts_duckdb_supports_variant |
scalar_macro | Return whether the currently open DuckDB runtime advertises the VARIANT logical type. Use this to gate optional SQL that depends on DuckDB VARIANT support. | |
duckhts_duckdb_supports_geometry |
scalar_macro | Return whether the currently open DuckDB runtime advertises the GEOMETRY logical type. Use this to gate optional SQL that depends on DuckDB GEOMETRY support. |
| Function | Kind | R helper | Description |
|---|---|---|---|
duckvep_ensembl_regions |
table_macro | Match tiled FASTA sequence to one Ensembl core assembly and assign dense model-local sequence-region ordinals. | |
duckvep_ensembl_transcripts |
table_macro | Build validated VEP-116 Ensembl core transcript models from core tables and matching tiled FASTA sequence. | |
duckvep_ensembl_regulation_features |
table_macro | Prepare VEP-116 RegulatoryFeature and MotifFeature intervals for a DuckVEP model. | |
duckvep_model_receipt |
table_macro | Create a deterministic provenance receipt and semantic hash for prepared DuckVEP model relations. | |
duckvep_model_load |
table | Load a validated immutable consequence model under a name in the current DuckDB database; return one TRUE row. | |
duckvep_model_drop |
scalar | Remove a named resident DuckVEP consequence model and release its transcript and regulation-feature interval indexes, sequences, and cached worker state. Returns FALSE when the name is absent or the model is in use by an annotation vector. | |
duckvep_allele_geometry |
scalar | Separate uploaded, VEP-116 feature and minimized-edit geometry for one literal biallelic allele. | |
duckvep_transcript_projection |
table_macro | Project independent literal alleles and existing DuckVEP annotations into typed, unshifted VEP-116 transcript display fields. | |
duckvep_repeat_alleles |
scalar_macro | Prepare bounded literal reference and alternate alleles from exact ordered repeat descriptions. | |
duckvep_breakend_geometry |
scalar | Parse one raw VCF 4.5 breakend ALT into mate coordinates, orientation and retained replacement sequence. | |
duckvep_haplotypes |
table | rduckhts_haplotypes |
Replay literal phased CDS/protein paths with carriers, source contributors, coding blocks, aligned differences and optional protein HGVS. |
duckvep_phase_call |
scalar | Assign decoded GT/PS allele slots to haplotype lanes under strict or pinned VEP-116 phase policy. | |
duckvep_annotate |
table | Annotate independent literal alleles, exact typed structural events and paired breakends against a resident VEP-116-compatible model. | |
duckvep_so_terms |
table | Return VEP-116 Sequence Ontology terms, consequence-mask bits, impact, severity rank and evaluator tier. |
| Function | Kind | R helper | Description |
|---|---|---|---|
read_bcf |
table | rduckhts_bcf |
Read VCF/BCF with header-typed INFO/FORMAT, typed CSQ/ANN/BCSQ annotations, sample selection and optional tidy sample rows. |
read_geno |
table | rduckhts_geno |
Read one row per VCF/BCF record with typed arbitrary-ploidy GT/PS calls, selected FORMAT fields and optional original VCF genotype text. |
read_bcf_samples |
table | rduckhts_bcf_samples |
Read the typed VCF/BCF sample catalog as sample_index UINTEGER and sample_name VARCHAR without reading records. Indices are zero-based positions in the original header, remain stable under selection and join read_geno calls from the same unchanged file. NULL or ‘-’ selects all; an empty string selects none; comma-separated names include samples; ‘^’ excludes them. Names are validated by HTSlib, selected rows retain header order, and unknown names error. |
read_bam |
table | rduckhts_bam |
Read SAM/BAM/CRAM alignments with optional typed SAM tags, auxiliary maps and packed sequence, quality or CIGAR output. |
read_fasta |
table | rduckhts_fasta |
Read full FASTA records or indexed regions with text or packed sequence output. |
read_bed |
table | rduckhts_bed |
Read BED3-BED12 interval files with canonical typed columns and optional tabix-backed region filtering. scan_mode := ‘sequential’ forces full-file streaming/counting instead of index-backed count paths and is incompatible with region. |
fasta_nuc |
table | rduckhts_fasta_nuc |
Compute bedtools nuc-style nucleotide composition for supplied BED intervals or generated fixed-width bins over a FASTA reference. A failed reference fetch fails the query with the file and zero-based half-open interval; requested intervals are not silently omitted. For bgzipped FASTA, gzi_path may point to an explicit .gzi sidecar when it is not colocated with the FASTA. |
read_fastq |
table | rduckhts_fastq |
Read single-end, paired-end, or interleaved FASTQ files with optional legacy quality decoding. By default, FASTQ qualities are interpreted as modern Phred+33 input. Use sequence_encoding := ‘nt16’ to return SEQUENCE as UTINYINT[] and quality_representation := ‘phred’ to return QUALITY as UTINYINT[] instead of VARCHAR. input_quality_encoding accepts ‘phred33’, ‘auto’, ‘phred64’, or ‘solexa64’. scan_mode := ‘sequential’ forces raw streaming/counting instead of index-backed count paths. |
read_bigwig |
table | rduckhts_bigwig |
Read stored BigWig signal intervals as CHROM, START0, END0 and VALUE. |
read_gff |
table | rduckhts_gff |
Read GFF annotations with optional raw scalar and parsed list/pair attributes, strict GFF3 validation and indexed region selection. |
read_gtf |
table | rduckhts_gtf |
Read GTF annotations with optional raw scalar and parsed list/pair attributes and indexed region selection. |
read_genbank |
table | rduckhts_genbank |
Read GenBank flat-file features in read_gff's column shape, with optional parsed qualifier MAP. |
read_tabix |
table | rduckhts_tabix |
Read tabix-indexed text with optional header handling, inferred types and region selection. |
fasta_index |
table | rduckhts_fasta_index |
Build a FASTA index (.fai) and return a single row with columns success (BOOLEAN) and index_path (VARCHAR). |
hts_union_query |
scalar_macro | rduckhts_bam_multi, rduckhts_bcf_multi, rduckhts_fastq_multi, rduckhts_fasta_multi, rduckhts_bed_multi, rduckhts_tabix_multi, rduckhts_gff_multi, rduckhts_gtf_multi |
Generate a UNION ALL BY NAME query string that reads every file matching a glob pattern through the named reader function. The result includes a ‘filename’ column identifying the source file for each row. Assign to a variable with SET VARIABLE and execute via query(getvariable(…)). Optional params string is appended to each reader call. In R, use the typed rduckhts_*_multi() helpers instead, which accept file vectors with optional per-file parameters and create DuckDB tables directly. |
hts_region_union_query |
scalar_macro | Generate UNION ALL BY NAME SQL over separate per-region scans of one HTS file. |
| Function | Kind | R helper | Description |
|---|---|---|---|
duckhts_bcf_convert_parquet_sql |
scalar_macro | rduckhts_bcf_convert_parquet |
Build COPY SQL for read_bcf() output with Parquet metadata, VCF header text and selected columns, filters or partitions. |
duckhts_bam_convert_parquet_sql |
scalar_macro | rduckhts_bam_convert_parquet |
Build COPY SQL for read_bam() output with Parquet metadata, SAM header text and selected columns, filters or partitions. |
duckhts_gff_convert_parquet_sql |
scalar_macro | rduckhts_gff_convert_parquet |
Build COPY SQL for read_gff() output with Parquet metadata, GFF/tabix header text and selected columns, filters or partitions. |
duckhts_tabix_convert_parquet_sql |
scalar_macro | rduckhts_tabix_convert_parquet |
Build COPY SQL for read_tabix() output with Parquet metadata, header text and selected columns, filters or partitions. |
genbank_to_fasta |
table | rduckhts_genbank_to_fasta |
Write the ORIGIN sequence of each GenBank record as FASTA and return success, output_path and records_written. |
| Function | Kind | R helper | Description |
|---|---|---|---|
read_pileup |
table | rduckhts_pileup |
Construct a region-scoped BAM pileup with one row per covered position, emitting chrom, 1-based position, depth, observed bases, and Phred+33 qualities after SAM flag and MAPQ filtering. This is a compact htslib pileup view, not samtools mpileup text parity. |
bam_bin_counts |
table | rduckhts_bam_bin_counts |
Count BAM or CRAM read starts into fixed-width bins. Returns one row per bin across the selected contig span, including zero-count bins, with total, forward, and reverse counts; rmdup := 'streaming' applies the WisecondorX-style larp/larp2 consecutive-position deduplication, rmdup := 'flag' drops SAM duplicate-flagged reads, and stats := 'gc', 'mq', or 'gc,mq' adds per-bin pre/post-filter GC and MAPQ sufficient statistics, including reference GC when reference is provided. |
duckhts_bam_bed_coverage |
table | rduckhts_bam_bed_coverage |
Compute samtools coverage-like regional summaries for BAM or CRAM input over a BED target set, returning one row per BED interval with DuckHTS-specific pre/post-filter read counts, covered bases, percentage covered, mean depth, mean baseQ, mean mapQ, and strand-specific post-filter summaries in read mode. Indexed BAM/CRAM input is required in the current implementation. decompression_threads controls htslib worker threads for BAM/CRAM decoding; use 0 to disable them. |
duckhts_mosdepth |
table | rduckhts_mosdepth |
Write mosdepth-compatible coverage files from indexed BAM/CRAM. |
| Function | Kind | R helper | Description |
|---|---|---|---|
duckhts_cgranges_create |
scalar | Create an empty session-scoped cgranges registry entry that can be populated with intervals and finalized for overlap queries. | |
duckhts_cgranges_add |
scalar | Append an interval to a session-scoped cgranges registry entry before finalization. Labels may be BIGINT-like, DOUBLE, VARCHAR, or BOOLEAN. | |
duckhts_cgranges_index |
scalar | Finalize a populated cgranges registry entry and build its immutable overlap index for subsequent queries. | |
duckhts_cgranges_destroy |
scalar | Destroy a session-scoped cgranges registry entry and release its indexed interval storage when it is not in active use. | |
duckhts_cgranges_from_query |
scalar | Execute a SQL query on an extension-owned DuckDB connection, append its interval rows into a session-scoped cgranges registry entry, and leave the populated index ready for explicit finalization with duckhts_cgranges_index(…). | |
duckhts_cgranges_from_table |
scalar | Reserved convenience constructor for bulk cgranges population from a table name. The current implementation is intentionally deferred and directs callers to duckhts_cgranges_from_query(…). | |
duckhts_cgranges_has_overlap |
scalar | Vectorized scalar predicate for streaming provider rows through a finalized session-scoped cgranges index. Returns TRUE when the query interval overlaps at least one indexed interval, or when mode = ‘contain’ and it fully contains at least one indexed interval; NULL inputs return NULL. | |
duckhts_cgranges_count_overlaps |
scalar | Vectorized scalar overlap counter for streaming provider rows through a finalized session-scoped cgranges index. Returns the number of indexed intervals that overlap the query interval, or with mode = ‘contain’ the number fully contained by it; NULL inputs return NULL. | |
duckhts_cgranges_overlaps_list |
scalar | Vectorized scalar overlap expander for streaming provider rows through a finalized session-scoped cgranges index. Returns a LIST of hit STRUCTs that can be expanded with UNNEST, preserving provider columns while emitting one row per matching indexed interval. Because scalar return types are fixed, labels are returned as text with label_type describing the original cgranges label kind; NULL inputs return NULL. | |
duckhts_cgranges_overlaps |
table | Query a finalized session-scoped cgranges registry entry and return one row per overlapping or containing indexed interval, preserving the original label type and interval coordinates. | |
duckhts_cgranges_overlaps_bulk |
table | Run a SQL query that yields overlap probes, stream those rows through a finalized session-scoped cgranges registry entry, and return one row per matching indexed interval. The probe query runs on the extension-owned helper connection, so it must reference regular tables/views rather than connection-local temp tables. When query_row_id_col is omitted, query_row_id defaults to the 1-based probe row ordinal. | |
regionkey |
scalar | Encode a genomic interval as an official RegionKey-compatible 64-bit unsigned integer. Start and end use 0-based half-open interval semantics, matching BED-style coordinates; strand accepts -1, 0, or 1. | |
regionkey_hex |
scalar | Render a RegionKey as its lowercase 16-character hexadecimal string representation. | |
parse_regionkey_hex |
scalar | Parse a 16-character hexadecimal RegionKey string back into its UBIGINT code. Invalid or non-hex strings return NULL. | |
encode_regionkey |
scalar | Encode the raw upstream RegionKey fields directly: chromosome code, 0-based start, 0-based end, and strand code (0 = unknown, 1 = +, 2 = -). | |
extract_regionkey_chrom |
scalar | Extract the raw upstream RegionKey chromosome code. | |
extract_regionkey_startpos |
scalar | Extract the raw upstream RegionKey 0-based start position. | |
extract_regionkey_endpos |
scalar | Extract the raw upstream RegionKey 0-based end position. | |
extract_regionkey_strand |
scalar | Extract the raw upstream RegionKey strand code (0 = unknown, 1 = +, 2 = -). | |
decode_regionkey |
scalar | Decode a RegionKey into its raw upstream numeric fields: chrom_code, start, end, and strand_code. | |
reverse_regionkey |
scalar | Decode a RegionKey into a STRUCT with chrom, chrom_code, start, end, strand, and strand_code. | |
extend_regionkey |
scalar | Extend a RegionKey interval by a fixed number of bases on both sides, clamping to the official 28-bit RegionKey position range. | |
are_overlapping_regions |
scalar | Return TRUE when two explicit 0-based half-open intervals overlap on the same canonical chromosome. | |
are_overlapping_region_regionkey |
scalar | Return TRUE when a 0-based half-open interval overlaps the supplied RegionKey interval. | |
are_overlapping_regionkeys |
scalar | Return TRUE when two RegionKeys overlap. |
| Function | Kind | R helper | Description |
|---|---|---|---|
duckhts_fastq_qc |
aggregate | Aggregate canonical sequence and Phred+33 quality strings directly into exact read/base/Q20/Q30/Q40, nucleotide, quality-sum, and per-cycle sufficient statistics. The nested cycles list supports mean-quality, nucleotide-content, GC, and read-length curves without expanding one SQL row per base. Rows with any NULL input are ignored. Per-cycle state defaults to at most 1,048,576 cycles; pass a constant max_cycles per aggregate group to choose a larger explicit limit, up to 16,777,216. |
| Function | Kind | R helper | Description |
|---|---|---|---|
duckhts_somalier_import_sites |
table_macro | rduckhts_somalier_import_sites |
Import an already selected Somalier sites VCF/BCF as one canonical panel and population-frequency relation. |
duckhts_somalier_vcf_counts |
table_macro | rduckhts_somalier_vcf_counts |
Extract a complete panel-aligned A/B/other count relation from VCF/BCF FORMAT/AD. |
duckhts_somalier_bam_counts |
table | rduckhts_somalier_bam_counts |
Extract complete panel-aligned A/B/other base counts from one indexed BAM or CRAM source. |
duckhts_somalier_panel_sha256 |
scalar_macro | Derive a stable SHA-256 identity for an ordered biallelic sample-fingerprinting panel. | |
duckhts_somalier_frequency_sha256 |
scalar_macro | Derive a stable identity for panel-aligned population-B allele frequencies. | |
duckhts_somalier_classify |
scalar | Classify one measured A/B/other count tuple for Somalier-derived autosomal relatedness. | |
duckhts_somalier_prepare_sketches |
table_macro | rduckhts_somalier_sketches |
Build one panel-verified packed relatedness sketch per sample from typed count evidence. |
duckhts_somalier_verify_sketches |
scalar_macro | Verify persisted relatedness sketches against their retained raw count evidence. | |
duckhts_somalier_relatedness |
scalar | rduckhts_somalier_relatedness |
Compute fused Somalier-derived relatedness and concordance statistics for two prepared sketches. |
duckhts_somalier_verify_relatedness |
scalar | Verify a typed relatedness result against its two sealed sketches. | |
duckhts_somalier_charr |
table_macro | rduckhts_somalier_charr |
Estimate per-sample contamination with a bounded Somalier-derived CHARR reduction. |
duckhts_somalier_matched_contamination |
table_macro | rduckhts_somalier_matched_contamination |
Estimate directional contamination for explicitly selected receiver/anchor sample pairs. |
| Function | Kind | R helper | Description |
|---|---|---|---|
detect_quality_encoding |
table | rduckhts_detect_quality_encoding |
Inspect a FASTQ file’s observed quality ASCII range and report compatible legacy encodings with a heuristic guessed encoding. |
duckhts_samtools_idxstats |
table | rduckhts_samtools_idxstats |
Write samtools idxstats-compatible TAB-delimited output for BAM, CRAM, or SAM input. Indexed BAM uses hts_idx_get_stat(...) for the fast path; CRAM, SAM, and unindexed BAM fall back to a full scan while preserving samtools-style contig rows plus the final * row. |
read_hts_header |
table | rduckhts_hts_header |
Inspect HTS headers in parsed, raw, or combined form across supported formats. Raw VCF/BCF mode includes the final #CHROM sample header line so the returned text is suitable for Parquet metadata and future VCF/BCF regeneration. |
read_hts_index |
table | rduckhts_hts_index |
Inspect high-level HTS index metadata such as sequence names and mapped counts. |
read_hts_index_spans |
table | rduckhts_hts_index_spans |
Expand index metadata into span and chunk rows suitable for low-level index inspection. |
read_hts_index_raw |
table_macro | rduckhts_hts_index_raw |
Return the raw on-disk HTS index blob together with basic identifying metadata. |
| Function | Kind | R helper | Description |
|---|---|---|---|
bgzip |
table | rduckhts_bgzip |
Compress a plain file to BGZF and return the created output path and byte counts. |
bgunzip |
table | rduckhts_bgunzip |
Decompress a BGZF-compressed file and return the created output path and byte counts. |
| Function | Kind | R helper | Description |
|---|---|---|---|
bam_index |
table | rduckhts_bam_index |
Build a BAM or CRAM index and report the written index path and format. |
bcf_index |
table | rduckhts_bcf_index |
Build a TBI or CSI index for a VCF or BCF file and report the written index path and format. |
tabix_index |
table | rduckhts_tabix_index |
Build a tabix index for a BGZF-compressed text file using a preset or explicit coordinate columns. |
| Function | Kind | R helper | Description |
|---|---|---|---|
variantkey |
scalar | Encode a normalized biallelic variant as an official VariantKey-compatible 64-bit unsigned integer. This DuckHTS wrapper accepts 1-based VCF/DuckHTS POS to match bcftools %VKX / +add-variantkey, internally converts to the upstream 0-based field, and preserves the official hashed nonreversible mode for large, ambiguous, and symbolic REF/ALT strings. Only CHROM, POS, REF, and ALT are encoded; END, SVLEN, mate breakend coordinates, and other SV metadata are not. |
|
variantkey_hex |
scalar | Render a VariantKey as its lowercase 16-character hexadecimal string representation. | |
parse_variantkey_hex |
scalar | Parse a 16-character hexadecimal VariantKey string back into its UBIGINT code. Invalid or non-hex strings return NULL. | |
encode_variantkey |
scalar | Encode the raw upstream VariantKey fields directly: chromosome code, 0-based position, and 31-bit REF+ALT code. | |
extract_variantkey_chrom |
scalar | Extract the raw upstream VariantKey chromosome code. | |
extract_variantkey_pos |
scalar | Extract the raw upstream VariantKey 0-based position field. | |
extract_variantkey_refalt |
scalar | Extract the raw upstream 31-bit VariantKey REF+ALT code. | |
decode_variantkey |
scalar | Decode a VariantKey into its raw upstream numeric fields: chrom_code, pos0, and refalt_code. | |
reverse_variantkey |
scalar | Decode a VariantKey into a STRUCT with chrom, chrom_code, 1-based pos, upstream 0-based pos0, ref, alt, refalt_code, and reversible. For hashed nonreversible keys, reversible is FALSE and ref/alt are returned as NULL because DuckHTS v1 does not ship the optional NRVK lookup sidecar. | |
variantkey_range |
scalar | Return the inclusive minimum and maximum VariantKey bounds for a chromosome plus 1-based VCF position range, suitable for numeric range filtering on precomputed VariantKeys. | |
duckhts_contig_key |
scalar | Return a conservative contig join key by removing one non-empty leading chr prefix case-insensitively and normalizing M/MT to MT. X and Y are uppercased; all other suffixes are preserved. This does not map numeric sex chromosomes, accessions, patches, or alternate loci. | |
bcftools_liftover |
scalar | rduckhts_liftover |
Row-oriented liftover kernel intended to mirror bcftools +liftover semantics as closely as possible while returning one STRUCT per input row with fields: src_chrom, src_pos, src_ref, src_alt, dest_chrom, dest_pos, dest_end, dest_ref, dest_alt, mapped, reverse_complemented, swap, reject_reason, and note. Set no_left_align := true to skip post-liftover left-alignment of lifted indels (mirrors –no-left-align in bcftools +liftover). |
duckdb_liftover |
table_macro | rduckhts_liftover |
DuckDB-specific wrapper over bcftools_liftover that takes either a table name or a derived-table expression plus column-name strings for chrom/pos/ref/alt and returns the lifted table. The no_left_align parameter mirrors –no-left-align in bcftools +liftover. |
bcftools_norm_row |
scalar | Normalize one variant against FASTA with bcftools/vt-style left alignment. | |
duckhts_bcftools_norm |
table_macro | rduckhts_bcftools_norm |
Normalize variants from a table or derived-table expression while preserving input columns. |
bcftools_score |
table | rduckhts_score |
Compute polygenic scores from genotype VCF/BCF and summary statistics using bcftools +score dosage semantics. |
bcftools_munge_row |
scalar | Normalize one summary-statistics row into GWAS-VCF-style fields (chrom/pos/ref/alt/effect metrics), resolving REF/ALT orientation against a FASTA reference and applying swap-aware sign/frequency/count transforms. The output flag alleles_swapped means REF/ALT orientation was swapped to match the FASTA reference. |
|
duckdb_munge |
table_macro | rduckhts_munge |
DuckDB macro wrapper over bcftools_munge_row that maps source columns (via preset or explicit map) and returns normalized GWAS-VCF-style rows with lean outputs and explicit alleles_swapped semantics. Output columns: chrom, pos, id, ref, alt, alleles_swapped, filter, ns, ez, nc, es, se, lp, af, ac, ne (16 columns). For METAL meta-analysis output with SI/I2/CQ/ED columns, use duckdb_munge_metal. |
duckdb_munge_metal |
table_macro | rduckhts_munge |
Extended munge macro with METAL meta-analysis output columns. Same as duckdb_munge but additionally emits: si (imputation info, from INFO input), i2 (Cochran’s I² heterogeneity, from HET_I2), cq (Cochran’s Q -log10 p, from HET_LP or -log10(HET_P)), and ed (effect direction string, from DIRE; +/- flipped on allele swap). The R wrapper rduckhts_munge() auto-dispatches to this macro when metal keys (INFO, HET_I2, HET_P, HET_LP, DIRE) are present in the resolved column map. |
| Function | Kind | R helper | Description |
|---|---|---|---|
seq_revcomp |
scalar | Compute the reverse complement of a DNA sequence using A, C, G, T, and N bases. Overloaded: accepts either a VARCHAR text sequence (returns VARCHAR) or a UTINYINT[] of htslib nt16 codes as produced by read_bam(sequence_encoding := ‘nt16’) (returns UTINYINT[]); the nt16 overload is bit-identical to the text path after decoding, so BAM pipelines can reverse-complement without leaving the nt16 encoding. | |
seq_canonical |
scalar | Return the lexicographically smaller of a sequence and its reverse complement. Overloaded: accepts either a VARCHAR text sequence (returns VARCHAR) or a UTINYINT[] of htslib nt16 codes as produced by read_bam(sequence_encoding := ‘nt16’) (returns UTINYINT[]); the nt16 overload compares by decoded base order and is bit-identical to the text path after decoding. | |
seq_hash_2bit |
scalar | Encode a short DNA sequence as a 2-bit unsigned integer hash. Overloaded to also accept a UTINYINT[] of htslib nt16 codes (from read_bam(sequence_encoding := ‘nt16’)); non-ACGT codes yield NULL, bit-identical to the text path. | |
seq_encode_4bit |
scalar | Encode an IUPAC DNA sequence as a list of 4-bit base codes, preserving ambiguity symbols including N. | |
seq_decode_4bit |
scalar | Decode a list of 4-bit IUPAC DNA base codes back into a sequence string. | |
seq_gc_content |
scalar | Compute GC fraction for a DNA sequence as a value between 0 and 1. Overloaded: accepts either a VARCHAR text sequence or a UTINYINT[] of htslib nt16 codes as produced by read_bam(sequence_encoding := ‘nt16’); the nt16 overload classifies codes directly and is bit-identical to the text path, so BAM pipelines can compute GC without decoding sequences back to text. | |
seq_kmers |
table | Expand a sequence into positional k-mers with optional canonicalization. |
| Function | Kind | R helper | Description |
|---|---|---|---|
sam_flag_bits |
scalar | Decode a SAM flag into a struct of boolean bit fields using explicit SAM-oriented names such as is_paired, is_proper_pair, is_next_segment_unmapped, and is_supplementary. |
|
sam_flag_has |
scalar | Test whether any bits from the provided SAM flag mask are set in a flag value. | |
is_forward_aligned |
scalar | Test whether a mapped segment is aligned to the forward strand. Returns NULL for unmapped segments because SAM flag 0x10 does not define genomic strand when 0x4 is set. |
|
is_paired |
scalar | Test whether the SAM flag indicates that the template has multiple segments in sequencing (0x1). |
|
is_proper_pair |
scalar | Test whether the SAM flag indicates that each segment is properly aligned according to the aligner (0x2). |
|
is_unmapped |
scalar | Test whether the read itself is unmapped according to the SAM flag. | |
is_next_segment_unmapped |
scalar | Test whether the next segment in the template is flagged as unmapped (0x8). |
|
is_reverse_complemented |
scalar | Test whether SEQ is stored reverse complemented (0x10); for mapped reads this corresponds to reverse-strand alignment. |
|
is_next_segment_reverse_complemented |
scalar | Test whether SEQ of the next segment in the template is stored reverse complemented (0x20). |
|
is_first_segment |
scalar | Test whether the read is marked as the first segment in the template. | |
is_last_segment |
scalar | Test whether the read is marked as the last segment in the template. | |
is_secondary |
scalar | Test whether the alignment is marked as secondary. | |
is_qc_fail |
scalar | Test whether the read failed vendor or pipeline quality checks. | |
is_duplicate |
scalar | Test whether the alignment is flagged as a duplicate. | |
is_supplementary |
scalar | Test whether the alignment is marked as supplementary. |
| Function | Kind | R helper | Description |
|---|---|---|---|
cigar_has_soft_clip |
scalar | Test whether a CIGAR string contains any soft-clipped segment (S). Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_has_hard_clip |
scalar | Test whether a CIGAR string contains any hard-clipped segment (H). Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_left_soft_clip |
scalar | Return the left-end soft-clipped length from a CIGAR string, or zero if the alignment does not start with S. Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_right_soft_clip |
scalar | Return the right-end soft-clipped length from a CIGAR string, or zero if the alignment does not end with S. Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_query_length |
scalar | Return the query-consuming length from a CIGAR string, counting M, I, S, =, and X. Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_aligned_query_length |
scalar | Return the aligned query length from a CIGAR string, counting M, =, and X but excluding clips and insertions. Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_reference_length |
scalar | Return the reference-consuming length from a CIGAR string, counting M, D, N, =, and X. Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
|
cigar_has_op |
scalar | Test whether a CIGAR string contains at least one instance of the requested operator. Overloaded to also accept a UINTEGER[] binary CIGAR (as produced by read_bam(cigar_representation := ‘binary’)); the binary overload is bit-identical to the text path. |
read_fastq with mate_path requires exact QNAME pairing. read_bam
supports typed standard_tags and auxiliary_tags maps. read_tabix
supports header-aware parsing (header, header_names) and optional
type inference (auto_detect, column_types). Region lists in
comma-separated form are supported by read_bam, read_bcf,
read_fasta, read_bigwig, read_gff, read_gtf, and read_tabix.
Indexed read_bam, read_bcf, read_bigwig, read_gff, read_gtf,
and read_tabix multi-region queries emit a matching record once when
requested regions overlap. read_fasta retains its separate per-region
sequence-row contract.
Executed examples use bundled local test files through the DuckDB CLI
and load the extension bundled in the installed Rduckhts package.
Remote examples are unevaluated usage snippets.
SELECT CHROM, POS, REF, ALT, SAMPLE_ID
FROM read_bcf('test/data/formatcols.vcf.gz', tidy_format := true)
LIMIT 3;┌─────────┬───────┬─────────┬───────────┬───────────┐
│ CHROM │ POS │ REF │ ALT │ SAMPLE_ID │
│ varchar │ int64 │ varchar │ varchar[] │ varchar │
├─────────┼───────┼─────────┼───────────┼───────────┤
│ 1 │ 100 │ A │ [T] │ S1 │
│ 1 │ 100 │ A │ [T] │ S² │
│ 1 │ 100 │ A │ [T] │ S3 │
└─────────┴───────┴─────────┴───────────┴───────────┘
SELECT count(*) AS n
FROM read_bam('test/data/range.bam', region := 'CHROMOSOME_I:1-1000');┌───────┐
│ n │
│ int64 │
├───────┤
│ 2 │
└───────┘
SELECT *
FROM fasta_index('test/data/ce.fa');┌─────────┬─────────────────────┐
│ success │ index_path │
│ boolean │ varchar │
├─────────┼─────────────────────┤
│ true │ test/data/ce.fa.fai │
└─────────┴─────────────────────┘
SELECT NAME, length(SEQUENCE) AS seq_length
FROM read_fasta('test/data/ce.fa', region := 'CHROMOSOME_I:1-25');┌──────────────┬────────────┐
│ NAME │ seq_length │
│ varchar │ int64 │
├──────────────┼────────────┤
│ CHROMOSOME_I │ 25 │
└──────────────┴────────────┘
SELECT NAME, MATE, PAIR_ID
FROM read_fastq('test/data/interleaved.fq', interleaved := true)
LIMIT 3;┌─────────────────────────────────┬────────┬─────────────────────────────────┐
│ NAME │ MATE │ PAIR_ID │
│ varchar │ uint16 │ varchar │
├─────────────────────────────────┼────────┼─────────────────────────────────┤
│ HS25_09827:2:1201:1505:59795#49 │ 1 │ HS25_09827:2:1201:1505:59795#49 │
│ HS25_09827:2:1201:1505:59795#49 │ 2 │ HS25_09827:2:1201:1505:59795#49 │
│ HS25_09827:2:1201:1559:70726#49 │ 1 │ HS25_09827:2:1201:1559:70726#49 │
└─────────────────────────────────┴────────┴─────────────────────────────────┘
SELECT CHROM, START0, END0, round(VALUE::DOUBLE, 1) AS VALUE
FROM read_bigwig(
'third_party/libBigWig/test/test.bw',
region := '1:1-150,10:201-300'
)
ORDER BY CHROM, START0;┌─────────┬────────┬────────┬────────┐
│ CHROM │ START0 │ END0 │ VALUE │
│ varchar │ uint32 │ uint32 │ double │
├─────────┼────────┼────────┼────────┤
│ 1 │ 0 │ 1 │ 0.1 │
│ 1 │ 1 │ 2 │ 0.2 │
│ 1 │ 2 │ 3 │ 0.3 │
│ 1 │ 100 │ 150 │ 1.4 │
│ 10 │ 200 │ 300 │ 2.0 │
└─────────┴────────┴────────┴────────┘
read_bigwig() returns the intervals physically stored in a BigWig as
zero-based, half-open (CHROM, START0, END0, VALUE) rows. Its optional
region uses the same one-based inclusive, comma-separated syntax as
the indexed HTS readers; overlapping requests are merged and do not
duplicate a stored interval. Local files, native HTTP/S3 paths, and
browser HTTP use the same htslib hFILE transport already used by
DuckHTS. A full scan distributes nonempty contigs across DuckDB workers;
a multi-region scan distributes merged ranges. blocks_per_iteration
controls indexed block batching inside a worker, not the number of
workers.
This query reads a real 100 kb slice of the UCSC GRCh38 phyloP 100-way track rather than converting it to an intermediate text file:
SELECT count(*) AS stored_intervals,
min(VALUE)::DOUBLE AS minimum,
max(VALUE)::DOUBLE AS maximum
FROM read_bigwig(
'https://hgdownload.soe.ucsc.edu/goldenPath/hg38/phyloP100way/hg38.phyloP100way.bw',
region := 'chr22:20000000-20099999'
);duckhts_bcftools_norm(...) applies bcftools-style FASTA-backed allele
normalization to a regular table or derived relation while preserving
the original columns. In split mode, multiallelic rows are expanded
first and then normalized one ALT at a time.
CREATE OR REPLACE TEMP TABLE readme_norm AS
SELECT *
FROM (VALUES
('chrS', 2, 'T', 'TT,TTT'),
('chrS', 2, 'T', '*,TT')
) AS t(chrom, pos, ref, alt);SELECT chrom, pos, ref, alt, alt_index,
pos_normed, ref_normed, alt_normed, norm_status
FROM duckhts_bcftools_norm(
'readme_norm',
'test/data/liftover_repeat_src.fa',
split_multiallelic := true
)
ORDER BY alt, alt_index;┌─────────┬───────┬─────────┬─────────┬───────────┬────────────┬────────────┬────────────┬──────────────────┐
│ chrom │ pos │ ref │ alt │ alt_index │ pos_normed │ ref_normed │ alt_normed │ norm_status │
│ varchar │ int32 │ varchar │ varchar │ int64 │ int64 │ varchar │ varchar │ varchar │
├─────────┼───────┼─────────┼─────────┼───────────┼────────────┼────────────┼────────────┼──────────────────┤
│ chrS │ 2 │ T │ *,TT │ 1 │ 2 │ T │ * │ SpanningDeletion │
│ chrS │ 2 │ T │ *,TT │ 2 │ 1 │ G │ GT │ Normalized │
│ chrS │ 2 │ T │ TT,TTT │ 1 │ 1 │ G │ GT │ Normalized │
│ chrS │ 2 │ T │ TT,TTT │ 2 │ 1 │ G │ GTT │ Normalized │
└─────────┴───────┴─────────┴─────────┴───────────┴────────────┴────────────┴────────────┴──────────────────┘
DuckHTS vendors the official VariantKey / RegionKey C API and exposes
SQL helpers that mirror bcftools %VKX-style VariantKey output on VCF
rows. variantkey(...) accepts 1-based VCF POS, while
regionkey(...) uses 0-based half-open interval semantics. Large,
ambiguous, and symbolic alleles still encode through the official hashed
nonreversible VariantKey mode, but those keys do not encode END,
SVLEN, mate breakend coordinates, or other SV metadata; use RegionKey
explicitly for span-oriented interval work. See Nicola Asuni (2018)
https://doi.org/10.1101/473744.
SELECT variantkey_hex(variantkey('1', 324684, 'C', 'G')) AS vkx,
reverse_variantkey(parse_variantkey_hex('08027a2588b00000')) AS reversed;┌──────────────────┬─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ vkx │ reversed │
│ varchar │ struct(chrom varchar, chrom_code utinyint, pos bigint, pos0 uinteger, "ref" varchar, alt varchar, refalt_code uinteger, reversible boolean) │
├──────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ 08027a2588b00000 │ {'chrom': 1, 'chrom_code': 1, 'pos': 324684, 'pos0': 324683, 'ref': C, 'alt': G, 'refalt_code': 145752064, 'reversible': true} │
└──────────────────┴─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
SELECT regionkey_hex(regionkey('X', 1007, 1807, 1)) AS rkx,
are_overlapping_regionkeys(
regionkey('X', 1007, 1807, 1),
parse_regionkey_hex('b80001f78000387a')
) AS overlaps;┌──────────────────┬──────────┐
│ rkx │ overlaps │
│ varchar │ boolean │
├──────────────────┼──────────┤
│ b80001f78000387a │ true │
└──────────────────┴──────────┘
DuckVEP compiles Ensembl release relations into an immutable, shared transcript and regulation model. Sorted variant alleles then pass through a native C candidate sweep, transcript projection, consequence classifier, sequence editor, NMD evaluator, and optional HGVS renderer. Stable transcript/gene identifiers and supplementary annotations remain ordinary DuckDB relations and are joined only after the compact consequence rows have been filtered.
That last sentence is the point of the architecture, not an implementation detail. DuckVEP is one fast relation producer inside DuckDB. Anything DuckDB can read–Parquet or GeoParquet, VCF/BCF, CSV/TSV, JSON, an attached DuckLake, a local DuckDB, HTTP/S3 objects, or a supported external database–can be an annotation provider without a new DuckHTS file format or C plugin. Exact allele sources use collision-safe VariantKey joins, gene sources use stable identifiers, and interval sources use ordinary inequality joins, bounded key prefilters, or cgranges. DuckDB can execute two-inequality overlap predicates with its native IEJoin implementation and can spill large join state rather than requiring every provider to live in the resident C model.
The implementation targets executable Ensembl VEP 116 semantics rather than a new interpretation of the Sequence Ontology rules. The current differential ledger covers GRCh38, GRCh37, P. falciparum, exact structural variants, paired breakends, regulation/motif features, and variant-induced NMD. See the rendered conformance report, the throughput report, and the implementation contract in design/duckvep.md.
The model compiler reads ordinary DuckDB relations. Stage the exact
Ensembl core and funcgen release tables from their MySQL dump files, or
attach a read-only Ensembl MySQL database through DuckDB’s mysql
extension. The compiler is not a downloader: source retrieval and
dump-to-table typing are explicit staging steps, while the same
validation and model receipt apply to either transport.
-- Reference chunks are zero-based, half-open and sequence-bearing.
CREATE TABLE grch38_reference_chunks AS
SELECT chrom, start, "end", seq
FROM fasta_nuc(
'Homo_sapiens.GRCh38.dna.primary_assembly.fa',
bin_width := 1048576,
include_seq := TRUE
);
-- ensembl_core and ensembl_funcgen are schemas containing the release-116
-- tables named in design/duckvep.md.
CREATE TABLE grch38_regions AS
SELECT * FROM duckvep_ensembl_regions(
'ensembl_core', 'grch38_reference_chunks', 'GRCh38'
);
CREATE TABLE grch38_transcripts AS
SELECT * FROM duckvep_ensembl_transcripts(
'ensembl_core', 'grch38_reference_chunks', 'GRCh38'
);
CREATE TABLE grch38_regulation AS
SELECT * FROM duckvep_ensembl_regulation_features(
'ensembl_funcgen', 'grch38_regions'
);
CREATE TABLE grch38_receipt AS
SELECT * FROM duckvep_model_receipt(
'grch38_regions', 'grch38_transcripts',
'Ensembl', '116', 'GRCh38',
source_manifest_sha256, reference_sha256,
'VEP 116 core transcript selection',
regulation_features_table := 'grch38_regulation'
);duckvep_ensembl_transcripts(...) applies the pinned VEP
core-transcript selection, reconstructs ranked exon/cDNA/CDS geometry
and strand-correct sequence, loads the sequence-region genetic code
(including mitochondrial code), prepares complete transcript flanks,
mature-miRNA segments, and supported Ensembl sequence edits, and retains
MANE/GENCODE/CCDS and stable identifiers as cold relational columns.
GRCh37 is built from the separate release-116 GRCh37 core schema and is
intentionally MANE-free. Regulation and motif features are compiled from
the matching funcgen release, not inferred from transcript overlap.
Publication is separate from compilation. Persist the prepared relations
and load their sorted hot projections into a named resident model with
duckvep_model_load(...). reference_fasta enables reference
validation and VEP-compatible three-prime HGVS shifting;
transcript_coverage_complete := TRUE permits a no-transcript hit to
become a supported intergenic_variant.
SELECT loaded
FROM duckvep_model_load(
'human_116_grch38',
'SELECT seq_region, sequence_length, seq_region_name
FROM grch38_regions ORDER BY seq_region',
'SELECT transcript_index, seq_region, transcript_start, transcript_end,
strand, gene_index, transcript_flags, cds_start, cds_end,
cds_sequence, codon_table, pre_cds_sequence, post_cds_sequence
FROM grch38_transcripts
ORDER BY seq_region, transcript_start, transcript_index',
'SELECT transcript_index, exon.exon_start, exon.exon_end,
exon.exon_cdna_start, exon.exon_cdna_end, exon.phase, exon.end_phase
FROM grch38_transcripts,
LATERAL unnest(exons) AS u(exon)
ORDER BY transcript_index, exon.exon_cdna_start',
mature_mirna_query :=
'SELECT transcript_index, region.mature_mirna_start,
region.mature_mirna_end
FROM grch38_transcripts,
LATERAL unnest(mature_mirna_regions) AS u(region)
ORDER BY transcript_index, region.mature_mirna_start',
peptide_edit_query :=
'SELECT transcript_index, edit.protein_position,
edit.alternate_amino_acid
FROM grch38_transcripts,
LATERAL unnest(peptide_edits) AS u(edit)
ORDER BY transcript_index, edit.protein_position',
interval_feature_query :=
'SELECT regulation_feature_index, seq_region, feature_start, feature_end,
feature_kind
FROM grch38_regulation
ORDER BY seq_region, feature_start, regulation_feature_index',
reference_fasta := 'reference/Homo_sapiens.GRCh38.dna.primary_assembly.fa',
transcript_coverage_complete := TRUE
);The resident transcript arrays are sorted by
(seq_region, transcript_start). For the first allele in a DuckDB
vector, cgranges supplies a complete seed set. As later alleles advance
in coordinate order, the worker admits newly reachable transcripts from
the front of the sorted array and retires transcripts whose end plus the
requested flank is behind the allele. It classifies only that active
set:
transcripts ordered by start: T1------T2----------T3-----T4---->
sorted allele stream: v1 v2 v3 v4 >
seed once -> admit starts now reachable -> retire expired ends
-> project/classify active transcripts -> advance
This is not a 5,000-record or 5,000-base buffer. The default 5,000 bases
are only the VEP-compatible upstream/downstream candidate distances;
zero, 10,000, 50,000, or another supported UINTEGER distance uses the
same algorithm. Long alleles are not clipped to that window. Transcript
and regulation/motif sweeps own different active sets because interval
features do not use transcript flanks. The immutable model is shared
read-only across workers; each worker owns its candidate arrays, exon
cursors, faidx handle, reference window, edit scratch, and output
builder. Consequently memory grows with the shared model plus bounded
per-worker workspace, not with a copy of the model per thread. The
current scalar surface reseeds at each DuckDB vector; a future stateful
table-function surface can preserve the frontier across vectors without
changing the consequence authority.
duckvep_annotate(...) consumes one coordinate-ordered row per ALT
allele. Its canonical columns cover literal small variants, exact span
SVs, and paired breakends in one relation. Genotypes, phase sets,
imprecision intervals, raw ALT, and sample metadata stay on the source
row and join back by event_index.
rich |
hgvs |
Result |
|---|---|---|
FALSE |
FALSE |
Compact masks, codes, ordinals, cDNA/CDS/protein positions, amino-acid bytes and NMD codes |
TRUE |
FALSE |
Compact fields plus Consequence, IMPACT, region, amino-acid, NMD and audit text from the same native pass |
FALSE |
TRUE |
Compact fields plus independent-event HGVSc/HGVSn/HGVSp |
TRUE |
TRUE |
Rich consequence and HGVS from one fused candidate-discovery pass |
The transcript window defaults to 5,000 bases in each direction,
matching the VEP default. It is an explicit API parameter rather than a
fixed buffer: either direction may be zero or any supported UINTEGER
distance. Audit columns named duckvep_status and duckvep_reason
explain unresolved computation (for example missing sequence or a
reference mismatch); they are not Ensembl CSQ fields.
duckvep_transcript_projection(events, annotations, transcripts) adds
complete typed presentation facts for literal, independent alleles
as a SQL reference. Pass the same validated prepared transcript snapshot
used to load the resident model, including its transcript-ordered nested
exons, peptide_edits, CDS and post-CDS sequences. Event keys must be
unique. Annotation rows are preserved, including repeated pairs and NULL
transcript keys; the function promises no row order. It does not
validate the reference allele against FASTA or replace the annotation’s
status/reason, and it does not support symbolic SVs, breakends, phased
edit sets or HGVS shifting.
Ranges use 1-based transcript coordinates with independent NULL
endpoints for mapper gaps. An insertion reports its two ascending flanks
plus interbase; that flag must be retained when formatting an empty
interval. Exon/intron ordinals follow transcript order. Membership,
distance and the output allele use VEP feature geometry, not the
uploaded REF span or fully minimized edit. Reference and alternate
codon/peptide strings remain separate, including - for an empty string
and VEP’s changed-base codon casing. Unavailable coding sequence leaves
codon and amino-acid fields NULL, not -. Genetic-code lookup shares
the kernel’s pinned tables; this is not a new consequence
implementation.
Cold attributes remain joins. For example, after preparing literal
events and their transcript consequences against grch38_transcripts:
WITH ccds AS (
SELECT ta.transcript_id,
list(DISTINCT ta.value ORDER BY ta.value) AS ccds_ids
FROM core.transcript_attrib ta
JOIN core.attrib_type aty USING (attrib_type_id)
WHERE aty.code = 'ccds_transcript'
GROUP BY ta.transcript_id
)
SELECT p.*, t.transcript_stable_id, t.transcript_biotype,
t.mane_select_refseq, t.mane_plus_clinical_refseq,
g.canonical_transcript_id = t.source_transcript_id AS canonical,
(t.transcript_flags & 4096) <> 0 AS gencode_basic,
(t.transcript_flags & 8192) <> 0 AS gencode_primary,
c.ccds_ids
FROM duckvep_transcript_projection(
'literal_events', 'transcript_consequences', 'grch38_transcripts'
) p
LEFT JOIN grch38_transcripts t USING (transcript_index)
LEFT JOIN core.gene g ON g.gene_id = t.source_gene_id
LEFT JOIN ccds c ON c.transcript_id = t.source_transcript_id;VEP FLAGS is a final projection of cds_start_nf/cds_end_nf, not
the canonical attribute. FastVEP’s native tab column named FLAGS
uses a different contract and does not redefine these biological facts.
Existing_variation remains an exact-allele provider join. The SQL
presentation benchmark
measures this complete output independently of the consequence-only
throughput path.
The following is the production shape, using the public HG002 40x
PCR-free DeepVariant GRCh38 WGS
callset,
an Ensembl 116 GRCh38 model, dated ClinVar/ClinvArbitration,
AlphaMissense v2, gnomAD v2.1.1 gene constraint, and an Ensembl
regulatory Parquet relation. This callset contains chromosomes 1–22, X,
Y, and MT; it is an annotation workload, not a GIAB truth set. The
provider files are ordinary typed Parquet; equivalent HTTP/S3 paths or
DuckLake tables can replace them. Run the statements in one DuckDB CLI
session so .timer on reports model load, VCF staging, the consequence
sweep, provider joins, and final Parquet materialization separately.
The providers/*.parquet paths below are not special DuckHTS files.
They are release-specific projections built with DuckDB from the
declared upstream artifacts:
| Provider relation | Upstream artifact |
|---|---|
clinvar_20260706_grch38_keyed.parquet |
ClinVar GRCh38 VCF, dated 2026-07-06 |
clinvarbitration_grch38_keyed.parquet |
ClinvArbitration record 16792026, whose release contract declares GRCh38 |
alphamissense_hg38_variantkey.parquet |
AlphaMissense v2 GRCh38 |
UCSC hg38.phyloP100way.bw |
GRCh38 phyloP 100-way BigWig |
ensembl116_grch38_regulatory.parquet |
grch38_regulation, compiled above from the Ensembl 116 funcgen tables |
gnomad_v211_constraint_gene.parquet |
gnomAD v2.1.1 gene constraint |
VariantKey is an exact key over a normalized allele representation.
Normalize arbitrary VCF inputs with duckhts_bcftools_norm(...) or an
equivalent pinned normalizer before building either side of the join;
keep the untouched record, genotype arrays and normalization lineage in
their source relations.
ClinVar is already VCF, so read_bcf() supplies typed INFO fields while
ALT ordinal expansion produces the allele relation.
COPY (
WITH alleles AS (
SELECT duckhts_contig_key(CHROM) AS chrom, POS::BIGINT AS pos,
upper(REF) AS ref, upper(a.alt) AS alt,
INFO_ALLELEID AS allele_id,
INFO_CLNSIG AS clinical_significance
FROM read_bcf('source/clinvar_20260706.vcf.gz', scan_mode := 'sequential')
CROSS JOIN unnest(ALT) AS a(alt)
), keyed AS (
SELECT *, variantkey(chrom, pos, ref, alt) AS vk FROM alleles
)
SELECT chrom, pos, ref, alt, vk,
mod(extract_variantkey_refalt(vk), 2) = 1 AS is_hash,
allele_id, clinical_significance
FROM keyed WHERE vk IS NOT NULL
ORDER BY vk
) TO 'providers/clinvar_20260706_grch38_keyed.parquet'
(FORMAT PARQUET, COMPRESSION ZSTD, ROW_GROUP_SIZE 122880);ClinvArbitration publishes an aggregate decision table. Its assembly is
a declared GRCh38 release fact; it is not inferred from chr-prefixed
strings.
COPY (
WITH source AS (
SELECT duckhts_contig_key(contig) AS chrom,
try_cast(position AS BIGINT) AS pos,
upper(reference) AS ref, upper(alternate) AS alt,
clinical_significance,
try_cast(gold_stars AS UTINYINT) AS gold_stars,
try_cast(allele_id AS BIGINT) AS allele_id
FROM read_csv_auto(
'source/clinvarbitration_16792026.tsv',
delim := '\t', header := TRUE, all_varchar := TRUE
)
), keyed AS (
SELECT *, variantkey(chrom, pos, ref, alt) AS vk FROM source
)
SELECT *, mod(extract_variantkey_refalt(vk), 2) = 1 AS is_hash
FROM keyed WHERE vk IS NOT NULL
ORDER BY vk
) TO 'providers/clinvarbitration_grch38_keyed.parquet'
(FORMAT PARQUET, COMPRESSION ZSTD, ROW_GROUP_SIZE 122880);The official AlphaMissense .tsv.gz is BGZF-compressed. DuckHTS can
build its coordinate index directly, then use the same file for indexed
regional queries or, as below, stream all 71.7 million rows once to
build the reusable pack.
SELECT * FROM tabix_index(
'source/AlphaMissense_hg38.tsv.gz',
preset := 'gff', seq_col := 1, start_col := 2, end_col := 2,
comment_char := '#', skip_lines := 4, threads := 4
);
COPY (
WITH keyed AS (
SELECT variantkey(duckhts_contig_key(chrom), pos, ref, alt) AS vk,
split_part(transcript_id, '.', 1) AS transcript_stable_id,
try_cast(split_part(transcript_id, '.', 2) AS UINTEGER)
AS transcript_version,
transcript_id, protein_variant, uniprot_id,
am_pathogenicity, am_class
FROM read_tabix(
'source/AlphaMissense_hg38.tsv.gz',
header_names := [
'chrom', 'pos', 'ref', 'alt', 'genome', 'uniprot_id',
'transcript_id', 'protein_variant', 'am_pathogenicity', 'am_class'
],
column_types := [
'VARCHAR', 'BIGINT', 'VARCHAR', 'VARCHAR', 'VARCHAR', 'VARCHAR',
'VARCHAR', 'VARCHAR', 'DOUBLE', 'VARCHAR'
],
scan_mode := 'sequential'
)
)
SELECT vk, transcript_stable_id, transcript_version,
transcript_id, protein_variant, uniprot_id,
am_pathogenicity, am_class
FROM keyed WHERE vk IS NOT NULL
ORDER BY vk, transcript_stable_id, transcript_version, protein_variant
) TO 'providers/alphamissense_hg38_variantkey.parquet'
(FORMAT PARQUET, COMPRESSION ZSTD, ROW_GROUP_SIZE 122880);The Ensembl provider is projected from the same release-116 funcgen relation that supplies the resident core features. Identifiers and SO metadata remain in Parquet; only compact feature geometry enters the C model.
COPY (
WITH source AS (
SELECT f.regulation_feature_index, f.stable_id, f.feature_class,
coalesce(f.feature_so_term, f.feature_class) AS so_term,
r.seq_region_name AS chrom,
f.feature_start::BIGINT - 1 AS start0,
f.feature_end::BIGINT AS end0
FROM grch38_regulation f
JOIN grch38_regions r USING (seq_region)
), keyed AS (
SELECT *, regionkey(chrom, start0, end0) AS rk FROM source
)
SELECT *, rk >> 31 AS rk_chrom_start,
regionkey(chrom, end0, end0) >> 31 AS rk_chrom_end
FROM keyed WHERE rk IS NOT NULL
ORDER BY rk
) TO 'providers/ensembl116_grch38_regulatory.parquet'
(FORMAT PARQUET, COMPRESSION ZSTD, ROW_GROUP_SIZE 122880);Gene constraint joins by stable Ensembl gene identifier and therefore needs no genomic key.
COPY (
SELECT gene_id, gene AS gene_symbol, transcript,
try_cast(pLI AS DOUBLE) AS pLI,
try_cast(oe_lof_upper AS DOUBLE) AS oe_lof_upper
FROM read_csv_auto(
'source/gnomad.v2.1.1.lof_metrics.by_gene.txt.bgz',
delim := '\t', header := TRUE, nullstr := 'NA'
)
WHERE gene_id IS NOT NULL
) TO 'providers/gnomad_v211_constraint_gene.parquet'
(FORMAT PARQUET, COMPRESSION ZSTD);The resulting files are reusable annotation-pack relations. Sorting
exact providers by vk and interval providers by rk gives Parquet
zonemaps useful ordering information; DuckDB still performs the final
collision or overlap predicate. The full provider preparation and join
measurements are in the supplementary annotation
benchmark.
.timer on makes the DuckDB CLI report every following statement
separately. Keep the thread count and memory limit fixed for the
complete run. Execute the duckvep_model_load(...) statement above in
this session before staging the alleles; the checked run loaded the full
Ensembl 116 model in 2.398 seconds; 644,427 transcripts.
.timer on
SET threads = 4;
SET memory_limit = '4GB';
SET temp_directory = 'case/duckdb-tmp';The input VCF is a record relation, while the consequence engine accepts
an event relation with one row per ALT. record_index and the one-based
alt_index preserve the route back to the original record and its
genotype arrays. This small-variant lane admits literal nucleotide
alleles only; exact SVs and paired breakends use the same event schema
through the typed columns that are NULL below.
-- Preserve the original VCF record and ALT numbering before normalization.
-- The complete sample/FORMAT columns may stay in a wider source relation and
-- join back through (record_index, alt_index).
CREATE TABLE case_records AS
SELECT row_number() OVER ()::UBIGINT AS record_index,
CHROM AS source_chrom, duckhts_contig_key(CHROM) AS chrom,
POS::BIGINT AS pos, REF AS ref, ALT AS alt
FROM read_bcf(
'case/HG002.hiseqx.pcr-free.40x.deepvariant-v1.0.grch38.vcf.gz',
scan_mode := 'sequential', decompression_threads := 0
);-- Split ALT with its original one-based ordinal, validate REF against the
-- release-matched FASTA, and left-align/minimize before any exact key is made.
CREATE TABLE case_normalized AS
SELECT record_index, alt_index, source_chrom, chrom,
pos_normed AS pos, upper(ref_normed) AS ref,
upper(alt_normed) AS alt, norm_status
FROM duckhts_bcftools_norm(
'case_records',
'reference/Homo_sapiens.GRCh38.dna.primary_assembly.fa',
split_multiallelic := TRUE
)
WHERE pos_normed IS NOT NULL
AND regexp_full_match(ref_normed, '[ACGTNacgtn]+')
AND regexp_full_match(alt_normed, '[ACGTNacgtn]+')
AND upper(ref_normed) <> upper(alt_normed);CREATE TABLE case_alleles AS
WITH interpreted AS (
-- This calls the same event interpreter as the consequence kernel. It is
-- not another SQL trim implementation.
SELECT n.*, duckvep_allele_geometry(pos, ref, alt) AS geometry
FROM case_normalized n
), keyed AS (
SELECT i.*, r.seq_region,
variantkey(chrom, pos, ref, alt) AS vk,
regionkey(chrom, geometry.feature_start0,
geometry.feature_end0) AS feature_rk
FROM interpreted i
JOIN grch38_regions r ON r.seq_region_name = i.chrom
)
SELECT row_number() OVER (
ORDER BY seq_region, pos, record_index, alt_index
)::UBIGINT AS event_index,
record_index, alt_index, seq_region, chrom,
pos::UBIGINT AS position, ref AS reference, alt AS alternate,
vk, mod(extract_variantkey_refalt(vk), 2) = 1 AS is_hash,
geometry.kind_code, geometry.interbase,
geometry.raw_start0, geometry.raw_end0,
geometry.feature_start0, geometry.feature_end0,
geometry.edit_start0, geometry.edit_end0,
geometry.insertion_boundary0,
feature_rk >> 31 AS feature_rk_chrom_start,
regionkey(chrom, geometry.feature_end0,
geometry.feature_end0) >> 31 AS feature_rk_chrom_end,
NULL::UBIGINT AS end_position,
NULL::VARCHAR AS structural_type,
NULL::VARCHAR AS copy_change,
NULL::UINTEGER AS mate_seq_region,
NULL::UBIGINT AS mate_position
FROM keyed
WHERE vk IS NOT NULL AND feature_rk IS NOT NULL
-- Coordinate order is the sweep contract. Normalization can move POS, so sort
-- only after normalization and event interpretation.
ORDER BY seq_region, position, event_index;Measured VCF decoding, ALT expansion, normalization, keying and ordering: 12.200 seconds; 7,378,240 alleles staged.
The resident model contains only the hot transcript, exon, sequence and
core feature fields. Stable identifiers and supplementary provider
payloads remain in DuckDB and are joined later. hgvs and rich change
output projection; they do not cause a second candidate-discovery pass.
Do not retain the complete result of duckvep_annotate(...) before
writing it: this WGS emits 88 million rows. The final query below
consumes the annotator directly. In isolation, the same four-thread
rich/HGVS stream writes all rows in 24.524 seconds; 88,392,840
annotation rows.
ClinVar and ClinvArbitration are allele-level providers. VariantKey can
encode short alleles reversibly or store a hash for longer alleles. The
is_hash equality prevents mixing those representations; hashed matches
are then checked against the normalized literal contig, position, REF
and ALT so a collision cannot become clinical evidence. Lists of structs
keep each provider record intact instead of independently aggregating
fields that belong together.
CREATE TABLE case_clinvar AS
SELECT q.event_index,
list_distinct(list(struct_pack(
allele_id := p.allele_id,
clinical_significance := p.clinical_significance
))) AS clinvar_records
FROM case_alleles q
JOIN read_parquet('providers/clinvar_20260706_grch38_keyed.parquet') p
ON q.vk = p.vk AND q.is_hash = p.is_hash
AND (NOT q.is_hash OR
(q.chrom = p.chrom AND q.position = p.pos AND
q.reference = p.ref AND q.alternate = p.alt))
GROUP BY q.event_index;Measured dated ClinVar join: 0.259 seconds; 50,749 matched alleles.
CREATE TABLE case_clinvarbitration AS
SELECT q.event_index,
list_distinct(list(struct_pack(
allele_id := p.allele_id,
classification := p.clinical_significance,
gold_stars := p.gold_stars
))) AS clinvarbitration_records
FROM case_alleles q
JOIN read_parquet('providers/clinvarbitration_grch38_keyed.parquet') p
ON q.vk = p.vk AND q.is_hash = p.is_hash
AND (NOT q.is_hash OR
(q.chrom = p.chrom AND q.position = p.pos AND
q.reference = p.ref AND q.alternate = p.alt))
GROUP BY q.event_index;Measured ClinvArbitration join: 0.176 seconds; 45,232 matched alleles.
AlphaMissense contains single-nucleotide substitutions, whose
VariantKeys are reversible, so hashed events are excluded rather than
subjected to a literal fallback comparison. Scores are
transcript-specific: the provider pack retains the versioned transcript
accession and the join resolves it to the same resident
transcript_index emitted by DuckVEP. Taking the maximum score across
all transcripts would attach one transcript’s prediction to unrelated
transcript consequence rows.
CREATE TABLE case_alphamissense AS
SELECT q.event_index, t.transcript_index,
list_distinct(list(struct_pack(
transcript_id := p.transcript_id,
protein_variant := p.protein_variant,
uniprot_id := p.uniprot_id,
pathogenicity := p.am_pathogenicity,
classification := p.am_class
))) AS alphamissense_records
FROM case_alleles q
JOIN read_parquet('providers/alphamissense_hg38_variantkey.parquet') p
ON q.vk = p.vk
JOIN grch38_transcripts t
ON t.transcript_stable_id = p.transcript_stable_id
AND t.transcript_version = p.transcript_version
WHERE NOT q.is_hash
GROUP BY q.event_index, t.transcript_index;Measured AlphaMissense join: 0.523 seconds; 14,850 matched alleles.
BigWig is already an indexed, compressed genomic signal store, so
conservation does not need a bespoke DuckVEP cache. Read only the case
ranges, preserve missing bases explicitly, and reduce overlaps in SQL.
Conservation over a replacement or deletion uses the minimized affected
reference span, not its VCF padding anchor. A pure insertion affects no
reference base; report its immediate left and right reference flanks
separately instead of fabricating a one-base mean. This example uses the
real UCSC phyloP 100-way track and a chromosome-22 slice; production
orchestration can construct comma-separated batches from the distinct
case coordinates and combine them with UNION ALL BY NAME.
CREATE TABLE case_phylop_chr22 AS
WITH signal AS (
SELECT duckhts_contig_key(CHROM) AS chrom,
START0::BIGINT AS start0, END0::BIGINT AS end0,
VALUE::DOUBLE AS value
FROM read_bigwig(
'https://hgdownload.soe.ucsc.edu/goldenPath/hg38/phyloP100way/hg38.phyloP100way.bw',
region := 'chr22:20000000-20099999'
)
), requests AS (
SELECT event_index, 'span' AS request_kind,
edit_start0 AS start0, edit_end0 AS end0
FROM case_alleles q
WHERE q.chrom = '22'
AND NOT interbase
AND edit_start0 < 20099999 AND edit_end0 > 19999999
UNION ALL
SELECT event_index, 'left', insertion_boundary0 - 1, insertion_boundary0
FROM case_alleles q
WHERE q.chrom = '22' AND interbase AND insertion_boundary0 > 0
AND insertion_boundary0 BETWEEN 20000000 AND 20099999
UNION ALL
SELECT event_index, 'right', insertion_boundary0, insertion_boundary0 + 1
FROM case_alleles q
WHERE q.chrom = '22' AND interbase
AND insertion_boundary0 BETWEEN 19999999 AND 20099998
), overlaps AS (
SELECT r.event_index, r.request_kind, r.end0 - r.start0 AS requested_bases,
greatest(0, least(r.end0, s.end0) - greatest(r.start0, s.start0))
AS observed_bases, s.value
FROM requests r
LEFT JOIN signal s
ON r.start0 < s.end0 AND r.end0 > s.start0
)
SELECT event_index,
sum(observed_bases) FILTER (WHERE request_kind = 'span')
AS observed_bases,
max(requested_bases) FILTER (WHERE request_kind = 'span')
AS requested_bases,
sum(observed_bases * value) FILTER (WHERE request_kind = 'span') /
nullif(sum(observed_bases) FILTER (WHERE request_kind = 'span'), 0)
AS phyloP_mean,
min(value) FILTER (WHERE request_kind = 'span') AS phyloP_min,
max(value) FILTER (WHERE request_kind = 'span') AS phyloP_max,
max(value) FILTER (
WHERE request_kind = 'left' AND observed_bases = 1
) AS insertion_left_phyloP,
max(value) FILTER (
WHERE request_kind = 'right' AND observed_bases = 1
) AS insertion_right_phyloP
FROM overlaps
GROUP BY event_index;The overlap width weights run-length intervals correctly. NULL means
the requested span or flank had no observed phyloP value; it is not
silently converted to zero. Repeated cohort workloads may explicitly
materialize release-labelled, coordinate-sorted Parquet or DuckLake
tiles, but BigWig remains a valid provider and precision authority
without such conversion.
For RegionKey-supported contigs, shifting a RegionKey right by 31 bits
produces an exact ordered (chromosome code, start) value. Constructing
the same value at the half-open end gives an exact
(chromosome code, end) value. The two inequalities below therefore
express both chromosome identity and half-open overlap, and DuckDB plans
them as IEJoin.
This example deliberately uses DuckVEP’s VEP-feature coordinates. For an
insertion they are an empty interval at the interbase site, so the
strict range inequalities require both adjacent reference positions to
lie inside the provider interval, matching VEP’s core-feature test. A
provider whose contract is “affected reference bases” should instead use
edit_start0/edit_end0 and an explicit insertion policy, as the phyloP
query does above. The uploaded raw_start0/raw_end0 span is provenance,
not an overlap default.
Do not add q.chrom = p.chrom to this plan. DuckDB then chooses a
chromosome hash join and tests the range predicates across enormous
same-chromosome candidate sets. On this workload that physical-plan
change was more than two orders of magnitude slower. Use EXPLAIN to
confirm IE_JOIN. For accessions, patches, or arbitrary species contigs
outside RegionKey’s encoding domain, use
duckhts_cgranges_overlaps_bulk(...) instead; it preserves literal
contig identity and has its own measured memory/speed tradeoff.
CREATE TABLE case_interval AS
SELECT q.event_index,
list_distinct(list(struct_pack(
regulation_feature_index := p.regulation_feature_index,
stable_id := p.stable_id,
so_term := p.so_term
))) AS interval_records
FROM case_alleles q
JOIN read_parquet('providers/ensembl116_grch38_regulatory.parquet') p
ON q.feature_rk_chrom_start < p.rk_chrom_end
AND q.feature_rk_chrom_end > p.rk_chrom_start
GROUP BY q.event_index;Measured Ensembl regulatory interval join: 0.770 seconds; 414,813 matched alleles. The complete cgranges build, bulk query, aggregation, and write takes 1.144 seconds; 414,813 matched alleles.
Transcript and regulation-feature indices are compact model-local
ordinals. Resolve them to stable identifiers only after annotation, then
attach gene-level and event-level payloads. The interval query above
demonstrates and measures a general relational overlap provider; it is
not needed to rediscover the same Ensembl core feature already selected
by the native sweep. Core feature metadata joins directly by
regulation_feature_index, which cannot attach a nearby but different
feature. This keeps provider strings out of the shared C model and lets
DuckDB project or omit them normally.
The query streams annotation into the joins and uses one Parquet writer
per DuckDB worker. event_index is the stable identity and ordering
key; forcing a global ORDER BY or a single output file serializes the
writer and requires a large sort/materialization. Query the resulting
Parquet dataset with an explicit ORDER BY only when a consumer
actually requires ordered rows.
COPY (
SELECT q.chrom, q.position, q.reference, q.alternate,
a.consequence, a.impact, a.cdna_position, a.cds_position,
a.protein_position, a.reference_amino_acid,
a.alternate_amino_acid, a.nmd_prediction,
a.transcript_hgvs, a.protein_hgvs,
t.transcript_stable_id, t.gene_stable_id, t.mane_select_refseq,
rf.stable_id AS regulation_stable_id,
rf.feature_so_term AS regulation_so_term,
cv.clinvar_records, ca.clinvarbitration_records,
am.alphamissense_records,
gc.pLI, gc.oe_lof_upper,
a.overlap_object, a.duckvep_status, a.duckvep_reason
FROM duckvep_annotate(
'case_alleles', 'human_116_grch38',
hgvs := TRUE, rich := TRUE,
upstream_distance := 5000, downstream_distance := 5000
) a
JOIN case_alleles q USING (event_index)
LEFT JOIN grch38_transcripts t USING (transcript_index)
LEFT JOIN grch38_regulation rf USING (regulation_feature_index)
LEFT JOIN read_parquet('providers/gnomad_v211_constraint_gene.parquet') gc
ON gc.gene_id = t.gene_stable_id
LEFT JOIN case_clinvar cv USING (event_index)
LEFT JOIN case_clinvarbitration ca USING (event_index)
LEFT JOIN case_alphamissense am
ON am.event_index = a.event_index
AND am.transcript_index = a.transcript_index
) TO 'case/HG002.deepvariant-v1.0.duckvep'
(FORMAT PARQUET, COMPRESSION ZSTD, PER_THREAD_OUTPUT TRUE);Measured model load, fused consequence/HGVS, all late joins, and four-writer ZSTD Parquet output: 28.841 seconds; 88,392,840 annotation rows written.
The checked real-data integration run retained 7,378,240 alleles from
chromosomes 1–22, X, Y, and MT and emitted 88,392,840
consequence/core-feature rows. With a 4 GB DuckDB memory limit, four
unpinned workers, warm input pages, and four Parquet writers, the
model-load plus annotation/composition stream completed in 28.841
seconds; 88,392,840 annotation rows written. GNU time -v recorded 5.31
GiB peak process RSS. That high-water mark includes the transient
full-model load; the immutable C model is allocated outside DuckDB’s
buffer-manager limit. The checked full-row fingerprint matches the
reference output across all 88,392,840 rows.
| measured stage | rows | seconds | peak RSS (GiB) | output bytes |
|---|---|---|---|---|
| RegionKey IEJoin + interval result | 414,813 | 0.770 | 1.52 | 4,262,629 |
| cgranges build/query + interval result | 414,813 | 1.144 | 0.79 | 4,451,147 |
| rich + HGVS + core regulation, four writers | 88,392,840 | 24.524 | 4.98 | 274,046,172 |
| rich + HGVS + all providers, four writers | 88,392,840 | 28.841 | 5.31 | 285,798,217 |
The exact-source benchmark separately measures the complete 4.0-million-allele GIAB probe against ClinVar, ClinvArbitration, AlphaMissense, REVEL, gene constraint, and interval providers, including one-, four-, and twelve-provider plans, Parquet row-group pruning, materialized output, and peak RSS. See the supplementary annotation benchmark.
The deterministic fixture below remains deliberately small so every README render can execute it offline. It checks the public load/annotate/drop lifecycle; it is not the human performance or biological example.
CREATE OR REPLACE TABLE readme_duckvep_regions AS
SELECT 1::UINTEGER AS seq_region, 50000::UBIGINT AS sequence_length,
'11'::VARCHAR AS seq_region_name;CREATE OR REPLACE TABLE readme_duckvep_transcripts AS
SELECT 0::UINTEGER AS transcript_index, 1::UINTEGER AS seq_region,
100::UBIGINT AS transcript_start, 150::UBIGINT AS transcript_end,
1::TINYINT AS strand, 0::UINTEGER AS gene_index,
0::UBIGINT AS transcript_flags, NULL::UBIGINT AS cds_start,
NULL::UBIGINT AS cds_end, NULL::BLOB AS cds_sequence,
NULL::UTINYINT AS codon_table, NULL::BLOB AS pre_cds_sequence,
NULL::BLOB AS post_cds_sequence;CREATE OR REPLACE TABLE readme_duckvep_exons AS
SELECT 0::UINTEGER AS transcript_index, 100::UBIGINT AS exon_start,
150::UBIGINT AS exon_end, 1::UBIGINT AS exon_cdna_start,
51::UBIGINT AS exon_cdna_end, -1::TINYINT AS phase,
-1::TINYINT AS end_phase;SELECT loaded
FROM duckvep_model_load(
'readme',
'SELECT * FROM readme_duckvep_regions ORDER BY seq_region',
'SELECT * FROM readme_duckvep_transcripts ORDER BY seq_region, transcript_start, transcript_index',
'SELECT * FROM readme_duckvep_exons ORDER BY transcript_index, exon_cdna_start',
reference_fasta := 'test/data/fixture_ref.fa'
);┌─────────┐
│ loaded │
│ boolean │
├─────────┤
│ true │
└─────────┘
CREATE OR REPLACE TABLE readme_duckvep_events AS
SELECT * FROM (VALUES
(1::UBIGINT, 1::UINTEGER, 124::UBIGINT, 'A'::VARCHAR, 'G'::VARCHAR,
NULL::UBIGINT, NULL::VARCHAR, NULL::VARCHAR,
NULL::UINTEGER, NULL::UBIGINT)
) AS e(event_index, seq_region, position, reference, alternate,
end_position, structural_type, copy_change,
mate_seq_region, mate_position);SELECT a.event_index, a.transcript_index, a.consequence, a.impact,
a.cdna_position, a.transcript_hgvs, a.protein_hgvs,
a.duckvep_status
FROM duckvep_annotate(
'readme_duckvep_events', 'readme', hgvs := true,
upstream_distance := 0, downstream_distance := 0, rich := true
) AS a
ORDER BY a.event_index, a.transcript_index;┌─────────────┬──────────────────┬────────────────────────────────────┬──────────┬───────────────┬─────────────────┬──────────────┬────────────────┐
│ event_index │ transcript_index │ consequence │ impact │ cdna_position │ transcript_hgvs │ protein_hgvs │ duckvep_status │
│ uint64 │ uint32 │ varchar │ varchar │ uint32 │ varchar │ varchar │ varchar │
├─────────────┼──────────────────┼────────────────────────────────────┼──────────┼───────────────┼─────────────────┼──────────────┼────────────────┤
│ 1 │ 0 │ non_coding_transcript_exon_variant │ MODIFIER │ NULL │ n.25A>G │ NULL │ supported │
└─────────────┴──────────────────┴────────────────────────────────────┴──────────┴───────────────┴─────────────────┴──────────────┴────────────────┘
SELECT duckvep_model_drop('readme') AS dropped;┌─────────┐
│ dropped │
│ boolean │
├─────────┤
│ true │
└─────────┘
DuckHTS does not define a closed supplementary-annotation plugin API
because DuckDB already supplies the larger interface: a relation. For
high-cardinality pipelines, filter compact integer masks/codes first and
decode selected SO bits with duckvep_so_terms() afterward. Join
transcript_index, gene_index, and regulation_feature_index to the
prepared model relations for stable IDs and cold metadata. Exact or
positional resources such as ClinVar, population frequencies, calibrated
pathogenicity scores, and splice scores use collision-safe allele keys;
protein/domain and regulatory tracks use half-open interval overlap;
constraint, PanelApp, OMIM, and phenotype resources use stable
gene/disease IDs.
Those providers may be local Parquet, partitioned S3 Parquet, DuckLake snapshots, attached DuckDB databases, tabix-indexed files, or any other source for which DuckDB has a scanner. The optimizer can push columns and predicates into scans, prune sorted Parquet row groups, plan several equality joins together, execute two-inequality overlaps with IEJoin, and spill join blocks when required. cgranges remains useful for a repeatedly queried immutable interval registry; it is an execution choice, not a provider format. This makes an annotation-pack release a set of versioned relations and provenance, while a new case or cohort is only the delta that must be scanned, annotated, and joined.
The test system is deliberately several independent authorities rather than one large collection of expected strings:
- Pure-C unit and property oracles compare the optimized sweep, projection, edit, translation, consequence, HGVS, SV/BND, and workspace paths with slower reference implementations. ASan and UBSan execute the same properties.
- Mass statistical campaigns use a declared seed and explicit rare-state strata: strand, exon rank, splice offset, CDS/UTR/start/stop geometry, phase, length change and modulo three, incomplete codons, NMD thresholds, HGVS shift limits, structural containment, BND orientation, and transcript-window distances. Coverage counters are part of the result. A passing campaign with a required zero-count state fails, and every counterexample is retained and minimized into a fixed witness.
- The generated finite rule program is exhaustively checked over its Boolean consequence-predicate quotient. A transition manifest then names the wider geometry/state paths and the fixed, statistical, or executable evidence that currently covers each one. This is a compact proof obligation, not a claim that sampling proves an unobserved state.
- Executable differentials run the pinned VEP 116/BioPerl environment on the identical allele relation and full-outer-join unique allele/object pairs. Consequence, NMD, HGVSc, HGVSn, HGVSp, unresolved rows, and missing/extra objects remain separate fatal metrics; there is no release option that permits HGVS discordance.
- Public corpora search different state distributions: complete/dense ClinVar, whole GIAB, selected GRCh37, non-human codon tables, regulation/motif, exact SV, paired BND, and HPRC/pangenome-derived long alleles. A sparse WGS average cannot replace a dense transcript/HGVS or generated structural campaign.
The repository mirrors the relevant Ensembl VEP and Ensembl Variation
self-test cases with exact source lineage. The optional {targets}
project orchestrates coarse campaign invalidation, branching, retry, and
retained artifacts; it does not replace the biological comparison logic.
Perl/BioPerl plus micromamba provide the pinned oracle environment, and
blit is the non-interactive
process runner. Cache-backed campaigns create one acquisition receipt
and cheaply revalidate the complete installed-file inventory before
reuse, instead of hashing tens of gigabytes on every invocation. The
corpus workflow defines evidence
identity, denominators, and release transitions; the conformance
README owns commands and
external-campaign details.
The resident-engine benchmark uses the complete GIAB HG002 v4.2.1 input and the complete Ensembl 116 GRCh38 transcript and core-feature model.
| measure | value |
|---|---|
| source ALT alleles | 4,096,123 |
| model-addressable literal alleles | 4,095,611 |
| annotation rows | 47,835,851 |
| resident regulatory/motif features | 1,383,580 |
| transcript flank distance | 5,000 bases |
| source revision | ca35fd7b |
Throughput is input alleles per second:
| projection | one pinned core | four pinned cores |
|---|---|---|
| compact | 961,411 | 3,172,433 |
| rich | 430,211 | 1,527,643 |
| HGVS | 236,385 | 838,749 |
| rich + HGVS | 179,861 | 631,357 |
Input staging and model load are outside this resident-engine measurement. Each pass validates the complete output relation, and a full-row fingerprint checks one-core/four-core equality for every projection. Commands, CPU affinity and the complete evidence are in benchmarks/duckvep_throughput.md.
The end-to-end comparison includes VCF decoding, DuckVEP’s coordinate sort, annotation, and uncompressed tabular output for both DuckVEP and the current native-compiled FastVEP checkout.
| pinned physical cores | DuckVEP seconds | FastVEP seconds | FastVEP / DuckVEP |
|---|---|---|---|
| 1 | 64.54 | 164.38 | 2.55x |
| 4 | 32.06 | 68.09 | 2.12x |
The tools emit different native tabular schemas. The comparison therefore keeps the row and byte denominators, credits FastVEP for native presentation fields left as placeholders in this DuckVEP speed projection, and separately checks each result against VEP.
The historical supplementary result compares the same ClinVar 2026-07-06 release, 4,095,611 HG002 literal ALT queries, eight requested clinical/frequency fields, and 44,561 allele hits. DuckDB reads typed payload columns from collision-safe Parquet joins; FastVEP returns the complete fastSA JSON payload.
| threads | DuckDB typed Parquet join | FastVEP fastSA lookup | fastSA / DuckDB |
|---|---|---|---|
| 1 | 0.90 | 3.42 | 3.81x |
| 4 | 0.26 | 4.09 | 15.69x |
The illustrated DuckVEP: the fastest Ensembl VEP-compatible consequence predictor in the West? report retains the historical source-comparison evidence and its denominators. It is not an executable cross-machine benchmark: a renewed campaign must first declare cache staging for every model and provider input. Supplementary sources remain ordinary SQL relations rather than provider-specific C or Rust code.
The released claim is independent-event consequence and HGVS parity for the tested VEP 116 state space. Genotypes and phase sets are preserved by the HTS relations, but combined phased transcript edit sets, haplotype consequences, and haplotype HGVS remain separate work. Exact span SVs and paired BNDs are implemented; confidence-interval interpretation, STR-specific classification, and arbitrary producer-specific symbolic records are not silently guessed. GRCh37 uses its native Ensembl release-116 transcript model and carries no invented native MANE designation; any MANE projection back to GRCh37 must be a separate provenance-labelled mapping.
The resident kernel accepts any transcript catalog that satisfies its
validated model contract. The supplied builder currently compiles the
Ensembl core transcript set, not VEP’s --refseq or --merged sets. It
retains GENCODE Basic and Primary flags for SQL filtering but does not
prefilter the resident model to either set. The builder withholds
sequence for source rows marked with transcript-level sequence
corrections. A model with inserted or deleted transcript bases relative
to its genomic exons also needs a richer coordinate map than the current
resident interface. Mitochondrial genetic codes and ordinary MT
coordinates are supported; events, transcripts, or features that cross a
circular sequence origin are not.
Supplementary clinical/population scores are deliberately SQL relations rather than hard-wired C fields. The measured joins establish the storage and execution primitives, not a universal licensed annotation pack. Broader species/codon-table campaigns, mapped GRCh37 MANE, combined haplotypes, and the remaining imprecise-SV/STR states stay visible in the issue tracker and are not included in the 1.5.0 parity claim.
SELECT chrom, start, "end", name, block_count
FROM read_bed('test/data/targets.bed');┌────────────────┬───────┬───────┬─────────┬─────────────┐
│ chrom │ start │ end │ name │ block_count │
│ varchar │ int64 │ int64 │ varchar │ int64 │
├────────────────┼───────┼───────┼─────────┼─────────────┤
│ CHROMOSOME_I │ 0 │ 10 │ target1 │ 2 │
│ CHROMOSOME_I │ 10 │ 20 │ target2 │ 1 │
│ CHROMOSOME_II │ 0 │ 8 │ target3 │ NULL │
│ CHROMOSOME_III │ 0 │ 6 │ target4 │ 1 │
└────────────────┴───────┴───────┴─────────┴─────────────┘
SELECT chrom, start, "end", pct_gc, num_a, num_c, num_g, num_t
FROM fasta_nuc('test/data/ce.fa', bed_path := 'test/data/targets.bed')
ORDER BY chrom, start;┌────────────────┬───────┬───────┬────────┬───────┬───────┬───────┬───────┐
│ chrom │ start │ end │ pct_gc │ num_a │ num_c │ num_g │ num_t │
│ varchar │ int64 │ int64 │ double │ int64 │ int64 │ int64 │ int64 │
├────────────────┼───────┼───────┼────────┼───────┼───────┼───────┼───────┤
│ CHROMOSOME_I │ 0 │ 10 │ 0.6 │ 2 │ 4 │ 2 │ 2 │
│ CHROMOSOME_I │ 10 │ 20 │ 0.5 │ 4 │ 3 │ 2 │ 1 │
│ CHROMOSOME_II │ 0 │ 8 │ 0.625 │ 2 │ 4 │ 1 │ 1 │
│ CHROMOSOME_III │ 0 │ 6 │ 0.5 │ 2 │ 2 │ 1 │ 1 │
└────────────────┴───────┴───────┴────────┴───────┴───────┴───────┴───────┘
SELECT chrom, start, "end", seq_len, pct_gc
FROM fasta_nuc('test/data/ce.fa', bin_width := 10, region := 'CHROMOSOME_I:1-20');┌──────────────┬───────┬───────┬─────────┬────────┐
│ chrom │ start │ end │ seq_len │ pct_gc │
│ varchar │ int64 │ int64 │ int64 │ double │
├──────────────┼───────┼───────┼─────────┼────────┤
│ CHROMOSOME_I │ 0 │ 10 │ 10 │ 0.6 │
│ CHROMOSOME_I │ 10 │ 20 │ 10 │ 0.5 │
└──────────────┴───────┴───────┴─────────┴────────┘
duckhts_cgranges_* exposes a session-scoped immutable interval index
for native overlap queries. You can either build it row-wise with
duckhts_cgranges_create(...) + duckhts_cgranges_add(...), or
bulk-load it from SQL with duckhts_cgranges_from_query(...). For
row-preserving filters or count annotations over provider rows, use the
vectorized scalar helpers duckhts_cgranges_has_overlap(...) and
duckhts_cgranges_count_overlaps(...) directly in queries over
read_bed(...), read_bam(...), read_bcf(...), or regular tables.
For streaming one-row-per-hit expansion while keeping provider columns,
use duckhts_cgranges_overlaps_list(...) with UNNEST(...). The older
duckhts_cgranges_overlaps_bulk(...) table function still accepts a
probe query and emits matching indexed intervals in one table-function
call; that bulk query runs on the extension-owned helper connection, so
use a regular table or view rather than a temp table.
SELECT duckhts_cgranges_create('readme_idx');┌───────────────────────────────────────┐
│ duckhts_cgranges_create('readme_idx') │
│ boolean │
├───────────────────────────────────────┤
│ true │
└───────────────────────────────────────┘
SELECT duckhts_cgranges_add('readme_idx', 'chr1', 10, 20, 'a');┌─────────────────────────────────────────────────────────┐
│ duckhts_cgranges_add('readme_idx', 'chr1', 10, 20, 'a') │
│ boolean │
├─────────────────────────────────────────────────────────┤
│ true │
└─────────────────────────────────────────────────────────┘
SELECT duckhts_cgranges_add('readme_idx', 'chr1', 30, 40, 'b');┌─────────────────────────────────────────────────────────┐
│ duckhts_cgranges_add('readme_idx', 'chr1', 30, 40, 'b') │
│ boolean │
├─────────────────────────────────────────────────────────┤
│ true │
└─────────────────────────────────────────────────────────┘
SELECT duckhts_cgranges_index('readme_idx');┌──────────────────────────────────────┐
│ duckhts_cgranges_index('readme_idx') │
│ boolean │
├──────────────────────────────────────┤
│ true │
└──────────────────────────────────────┘
SELECT interval_ordinal, label, interval_chrom, interval_start, interval_end
FROM duckhts_cgranges_overlaps('readme_idx', 'chr1', 35, 36, query_row_id := 7);┌──────────────────┬─────────┬────────────────┬────────────────┬──────────────┐
│ interval_ordinal │ label │ interval_chrom │ interval_start │ interval_end │
│ int64 │ varchar │ varchar │ int32 │ int32 │
├──────────────────┼─────────┼────────────────┼────────────────┼──────────────┤
│ 1 │ b │ chr1 │ 30 │ 40 │
└──────────────────┴─────────┴────────────────┴────────────────┴──────────────┘
SELECT duckhts_cgranges_from_query(
'readme_qry_idx',
'SELECT * FROM (VALUES (''chr2'', 100, 110, ''alpha''), (''chr2'', 150, 170, ''beta'')) AS t(chrom, start, "end", label)',
'chrom', 'start', 'end', 'label'
);┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
│ duckhts_cgranges_from_query('readme_qry_idx', 'SELECT * FROM (VALUES (''chr2'', 100, 110, ''alpha''), (''chr2'', 150, 170, ''beta'')) AS t(chrom, start, "end", label)', 'chrom', 'start', 'end', 'label') │
│ boolean │
├────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┤
│ true │
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
SELECT duckhts_cgranges_index('readme_qry_idx');┌──────────────────────────────────────────┐
│ duckhts_cgranges_index('readme_qry_idx') │
│ boolean │
├──────────────────────────────────────────┤
│ true │
└──────────────────────────────────────────┘
SELECT interval_ordinal, label, interval_chrom, interval_start, interval_end
FROM duckhts_cgranges_overlaps('readme_qry_idx', 'chr2', 140, 170, mode := 'contain');┌──────────────────┬─────────┬────────────────┬────────────────┬──────────────┐
│ interval_ordinal │ label │ interval_chrom │ interval_start │ interval_end │
│ int64 │ varchar │ varchar │ int32 │ int32 │
├──────────────────┼─────────┼────────────────┼────────────────┼──────────────┤
│ 1 │ beta │ chr2 │ 150 │ 170 │
└──────────────────┴─────────┴────────────────┴────────────────┴──────────────┘
CREATE TABLE readme_probes AS
SELECT * FROM (VALUES
(10, 'chr2', 100, 105),
(20, 'chr2', 160, 161),
(30, 'chr2', 500, 510)
) AS t(probe_id, chrom, start, "end");SELECT
p.probe_id,
hit.interval_ordinal,
hit.label,
hit.label_type,
hit.interval_chrom,
hit.interval_start,
hit.interval_end
FROM readme_probes AS p
CROSS JOIN UNNEST(
duckhts_cgranges_overlaps_list('readme_qry_idx', p.chrom, p.start, p."end")
) AS u(hit)
ORDER BY p.probe_id, hit.interval_ordinal;┌──────────┬──────────────────┬─────────┬────────────┬────────────────┬────────────────┬──────────────┐
│ probe_id │ interval_ordinal │ label │ label_type │ interval_chrom │ interval_start │ interval_end │
│ int32 │ int64 │ varchar │ varchar │ varchar │ int32 │ int32 │
├──────────┼──────────────────┼─────────┼────────────┼────────────────┼────────────────┼──────────────┤
│ 10 │ 0 │ alpha │ VARCHAR │ chr2 │ 100 │ 110 │
│ 20 │ 1 │ beta │ VARCHAR │ chr2 │ 150 │ 170 │
└──────────┴──────────────────┴─────────┴────────────┴────────────────┴────────────────┴──────────────┘
SELECT query_row_id, interval_ordinal, label, interval_chrom, interval_start, interval_end
FROM duckhts_cgranges_overlaps_bulk(
'readme_qry_idx',
'SELECT probe_id, chrom, start, "end" FROM readme_probes',
'chrom', 'start', 'end',
query_row_id_col := 'probe_id'
)
ORDER BY query_row_id, interval_ordinal;┌──────────────┬──────────────────┬─────────┬────────────────┬────────────────┬──────────────┐
│ query_row_id │ interval_ordinal │ label │ interval_chrom │ interval_start │ interval_end │
│ int64 │ int64 │ varchar │ varchar │ int32 │ int32 │
├──────────────┼──────────────────┼─────────┼────────────────┼────────────────┼──────────────┤
│ 10 │ 0 │ alpha │ chr2 │ 100 │ 110 │
│ 20 │ 1 │ beta │ chr2 │ 150 │ 170 │
└──────────────┴──────────────────┴─────────┴────────────────┴────────────────┴──────────────┘
SELECT duckhts_cgranges_destroy('readme_idx');┌────────────────────────────────────────┐
│ duckhts_cgranges_destroy('readme_idx') │
│ boolean │
├────────────────────────────────────────┤
│ true │
└────────────────────────────────────────┘
SELECT duckhts_cgranges_destroy('readme_qry_idx');┌────────────────────────────────────────────┐
│ duckhts_cgranges_destroy('readme_qry_idx') │
│ boolean │
├────────────────────────────────────────────┤
│ true │
└────────────────────────────────────────────┘
DROP TABLE readme_probes;bam_bin_counts() does fixed-width read-start binning directly in
native code. This is the counting primitive used for WisecondorX-style
workflows: duplicate handling is explicit via rmdup, and optional
stats := 'gc,mq' adds one-pass GC and MAPQ summaries on the same scan.
SELECT
bin_id,
count_total,
count_fwd,
count_rev,
count_pre,
printf('%.2f', gc_perc_pre) AS gc_pre,
printf('%.2f', gc_perc_post) AS gc_post,
printf('%.1f', mean_mapq_post) AS mean_mapq_post
FROM bam_bin_counts(
'test/data/fixture_mixed.cram',
5000,
reference := 'test/data/fixture_ref.fa',
rmdup := 'streaming',
stats := 'gc,mq'
)
ORDER BY bin_id;┌────────┬─────────────┬───────────┬───────────┬───────────┬─────────┬─────────┬────────────────┐
│ bin_id │ count_total │ count_fwd │ count_rev │ count_pre │ gc_pre │ gc_post │ mean_mapq_post │
│ int64 │ int64 │ int64 │ int64 │ int64 │ varchar │ varchar │ varchar │
├────────┼─────────────┼───────────┼───────────┼───────────┼─────────┼─────────┼────────────────┤
│ 0 │ 2 │ 1 │ 1 │ 4 │ 0.50 │ 0.00 │ 60.0 │
│ 1 │ 2 │ 1 │ 1 │ 2 │ 0.00 │ 0.00 │ 60.0 │
│ 2 │ 1 │ 1 │ 0 │ 2 │ 1.00 │ 1.00 │ 60.0 │
│ 3 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
│ 4 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
│ 5 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
│ 6 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
│ 7 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
│ 8 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
│ 9 │ 0 │ 0 │ 0 │ 0 │ NULL │ NULL │ NULL │
└────────┴─────────────┴───────────┴───────────┴───────────┴─────────┴─────────┴────────────────┘
10 rows 8 columns
duckhts_mosdepth() writes mosdepth-style output files directly from
indexed BAM/CRAM input. The example below writes windowed fragment
coverage and then reads back the generated BED.gz output.
SELECT success, summary_path, regions_path
FROM duckhts_mosdepth(
'/tmp/duckhts_readme_mosdepth',
'test/data/range.bam',
chrom := 'CHROMOSOME_II',
by := '1000',
no_per_base := TRUE,
fragment_mode := TRUE,
use_median := TRUE,
overwrite := TRUE
);┌─────────┬───────────────────────────────────────────────────┬─────────────────────────────────────────────┐
│ success │ summary_path │ regions_path │
│ boolean │ varchar │ varchar │
├─────────┼───────────────────────────────────────────────────┼─────────────────────────────────────────────┤
│ true │ /tmp/duckhts_readme_mosdepth.mosdepth.summary.txt │ /tmp/duckhts_readme_mosdepth.regions.bed.gz │
└─────────┴───────────────────────────────────────────────────┴─────────────────────────────────────────────┘
SELECT
column0 AS chrom,
CAST(column1 AS BIGINT) AS start,
CAST(column2 AS BIGINT) AS "end",
CAST(column3 AS DOUBLE) AS depth
FROM read_csv(
'/tmp/duckhts_readme_mosdepth.regions.bed.gz',
delim := '\t',
header := FALSE,
compression := 'gzip'
)
LIMIT 3;┌───────────────┬───────┬───────┬────────┐
│ chrom │ start │ end │ depth │
│ varchar │ int64 │ int64 │ double │
├───────────────┼───────┼───────┼────────┤
│ CHROMOSOME_II │ 0 │ 1000 │ 0.0 │
│ CHROMOSOME_II │ 1000 │ 2000 │ 5.0 │
│ CHROMOSOME_II │ 2000 │ 3000 │ 3.0 │
└───────────────┴───────┴───────┴────────┘
bcftools_score computes per-sample polygenic risk scores (PRS) from a
VCF/BCF and one or more GWAS summary statistics files, mirroring the
bcftools +score plugin API.
-- Hard-call (GT) PRS — PLINK summary format
-- S1: 0×0.5 + 1×(−0.2) + 2×1.0 = 1.8
-- S2: 1×0.5 + 2×(−0.2) + 0×1.0 = 0.1
SELECT SAMPLE, round(score_summary, 3) AS prs
FROM bcftools_score(
'test/data/score_input.vcf',
'test/data/score_summary.tsv',
use := 'GT',
columns := 'PLINK'
);┌─────────┬────────┐
│ SAMPLE │ prs │
│ varchar │ double │
├─────────┼────────┤
│ S1 │ 1.8 │
│ S2 │ 0.1 │
└─────────┴────────┘
-- Multi-PRS TSV/SSF scoring: multiple summary files in one genotype scan
SELECT SAMPLE,
round(score_summary, 3) AS prs_a,
round(score_summary_na, 3) AS prs_b
FROM bcftools_score(
'test/data/score_input.vcf',
['test/data/score_summary.tsv', 'test/data/score_summary_na.tsv'],
use := 'GT',
columns := 'PLINK'
);┌─────────┬────────┬────────┐
│ SAMPLE │ prs_a │ prs_b │
│ varchar │ double │ double │
├─────────┼────────┼────────┤
│ S1 │ 1.8 │ 2.0 │
│ S2 │ 0.1 │ 0.5 │
└─────────┴────────┴────────┘
-- Dosage-based PRS (DS field) — fractional allele dosages from imputed data
-- S1: 0.1×0.5 + 0.8×(−0.2) + 1.8×1.0 = 1.69
-- S2: 1.0×0.5 + 1.9×(−0.2) + 0.2×1.0 = 0.32
SELECT SAMPLE, round(score_summary, 3) AS prs_ds
FROM bcftools_score(
'test/data/score_dosage.vcf',
'test/data/score_summary.tsv',
use := 'DS',
columns := 'PLINK'
);┌─────────┬────────┐
│ SAMPLE │ prs_ds │
│ varchar │ double │
├─────────┼────────┤
│ S1 │ 1.69 │
│ S2 │ 0.32 │
└─────────┴────────┘
-- GWAS-VCF multi-PRS: each FORMAT sample column becomes a separate PRS track
SELECT SAMPLE, round(PRS_A, 3) AS prs_a, round(PRS_B, 3) AS prs_b
FROM bcftools_score(
'test/data/score_input.vcf',
'test/data/score_gwas_summary.vcf',
use := 'GT'
);┌─────────┬────────┬────────┐
│ SAMPLE │ prs_a │ prs_b │
│ varchar │ double │ double │
├─────────┼────────┼────────┤
│ S1 │ 1.8 │ 1.0 │
│ S2 │ 0.1 │ 0.3 │
└─────────┴────────┴────────┘
SELECT src_chrom, src_pos, dest_chrom, dest_pos, dest_ref, dest_alt,
mapped, reverse_complemented, reject_reason, note
FROM duckdb_liftover(
'(VALUES
(''chrF'', 2, ''C'', ''T''),
(''chrR'', 2, ''A'', ''G''),
(''chrF'', 11, ''A'', ''T'')
) AS t(chrom, pos, ref, alt)',
'chrom',
'pos',
ref_col := 'ref',
alt_col := 'alt',
chain_path := 'test/data/liftover.chain',
dst_fasta_ref := 'test/data/liftover_dst.fa',
src_fasta_ref := 'test/data/liftover_src.fa'
);┌───────────┬─────────┬────────────┬──────────┬──────────┬──────────┬─────────┬──────────────────────┬───────────────────┬─────────┐
│ src_chrom │ src_pos │ dest_chrom │ dest_pos │ dest_ref │ dest_alt │ mapped │ reverse_complemented │ reject_reason │ note │
│ varchar │ int64 │ varchar │ int64 │ varchar │ varchar │ boolean │ boolean │ varchar │ varchar │
├───────────┼─────────┼────────────┼──────────┼──────────┼──────────┼─────────┼──────────────────────┼───────────────────┼─────────┤
│ chrF │ 2 │ chrLiftF │ 2 │ C │ T │ true │ false │ NULL │ NULL │
│ chrR │ 2 │ chrLiftR │ 9 │ T │ C │ true │ true │ NULL │ NULL │
│ chrF │ 11 │ NULL │ NULL │ NULL │ NULL │ false │ false │ SourceRefMismatch │ NULL │
└───────────┴─────────┴────────────┴──────────┴──────────┴──────────┴─────────┴──────────────────────┴───────────────────┴─────────┘
DuckHTS uses explicit runtime SIMD dispatch for byte-oriented helper
kernels, starting with seq_gc_content(...). scalar is always
available and is the portable baseline. Optional platform backends such
as avx2 or avx512 should be checked with
duckhts_simd_backend_available(...) before being requested. The auto
policy resolves each logical kernel independently from the current
compiled-and-CPU-supported capability mask; use
duckhts_simd_kernel_info() for the per-kernel result and
SELECT backend FROM duckhts_simd_set_backend('auto') to return to
runtime auto-detection.
SELECT backend, selectable, compiled, cpu_supported, available, selected
FROM duckhts_simd_info();┌──────────────┬────────────┬──────────┬───────────────┬───────────┬──────────┐
│ backend │ selectable │ compiled │ cpu_supported │ available │ selected │
│ varchar │ boolean │ boolean │ boolean │ boolean │ boolean │
├──────────────┼────────────┼──────────┼───────────────┼───────────┼──────────┤
│ scalar │ true │ true │ true │ true │ false │
│ sse2 │ false │ false │ true │ false │ false │
│ sse41 │ false │ false │ true │ false │ false │
│ avx2 │ true │ true │ true │ true │ true │
│ avx512 │ true │ true │ false │ false │ false │
│ neon │ true │ false │ false │ false │ false │
│ wasm_simd128 │ true │ false │ false │ false │ false │
└──────────────┴────────────┴──────────┴───────────────┴───────────┴──────────┘
SELECT kernel, selected_backend, scalar_fallback
FROM duckhts_simd_kernel_info();┌─────────────────┬──────────────────┬─────────────────┐
│ kernel │ selected_backend │ scalar_fallback │
│ varchar │ varchar │ boolean │
├─────────────────┼──────────────────┼─────────────────┤
│ seq_base_counts │ avx2 │ false │
│ bam_nt16_counts │ avx2 │ false │
│ nt16_gc_counts │ avx2 │ false │
│ fastq_qc │ avx2 │ false │
└─────────────────┴──────────────────┴─────────────────┘
SELECT backend AS selected_backend FROM duckhts_simd_set_backend('scalar');┌──────────────────┐
│ selected_backend │
│ varchar │
├──────────────────┤
│ scalar │
└──────────────────┘
SELECT
duckhts_simd_requested_backend() AS requested_backend,
duckhts_simd_backend() AS selected_backend,
printf('%.3f', seq_gc_content('ACGTNNacgtnn')) AS gc_content;┌───────────────────┬──────────────────┬────────────┐
│ requested_backend │ selected_backend │ gc_content │
│ varchar │ varchar │ varchar │
├───────────────────┼──────────────────┼────────────┤
│ scalar │ scalar │ 0.500 │
└───────────────────┴──────────────────┴────────────┘
SELECT backend IS NOT NULL AS restored_auto FROM duckhts_simd_set_backend('auto');┌───────────────┐
│ restored_auto │
│ boolean │
├───────────────┤
│ true │
└───────────────┘
SELECT
NAME,
seq_hash_2bit(substr(SEQUENCE, 1, 12)) AS hash_2bit_prefix,
seq_encode_4bit(substr(SEQUENCE, 1, 16)) AS codes,
seq_decode_4bit(seq_encode_4bit(substr(SEQUENCE, 1, 16))) AS roundtrip
FROM read_fasta('test/data/ce.fa')
LIMIT 2;┌───────────────┬──────────────────┬──────────────────────────────────────────────────┬──────────────────┐
│ NAME │ hash_2bit_prefix │ codes │ roundtrip │
│ varchar │ uint64 │ uint8[] │ varchar │
├───────────────┼──────────────────┼──────────────────────────────────────────────────┼──────────────────┤
│ CHROMOSOME_I │ 9898352 │ [4, 2, 2, 8, 1, 1, 4, 2, 2, 8, 1, 1, 4, 2, 2, 8] │ GCCTAAGCCTAAGCCT │
│ CHROMOSOME_II │ 6038978 │ [2, 2, 8, 1, 1, 4, 2, 2, 8, 1, 1, 4, 2, 2, 8, 1] │ CCTAAGCCTAAGCCTA │
└───────────────┴──────────────────┴──────────────────────────────────────────────────┴──────────────────┘
SELECT
NAME,
MATE,
seq_encode_4bit(substr(SEQUENCE, 1, 12)) AS codes,
seq_decode_4bit(seq_encode_4bit(substr(SEQUENCE, 1, 12))) AS roundtrip
FROM read_fastq('test/data/interleaved.fq', interleaved := true)
LIMIT 2;┌─────────────────────────────────┬────────┬──────────────────────────────────────┬──────────────┐
│ NAME │ MATE │ codes │ roundtrip │
│ varchar │ uint16 │ uint8[] │ varchar │
├─────────────────────────────────┼────────┼──────────────────────────────────────┼──────────────┤
│ HS25_09827:2:1201:1505:59795#49 │ 1 │ [2, 2, 4, 8, 8, 1, 4, 1, 4, 2, 1, 8] │ CCGTTAGAGCAT │
│ HS25_09827:2:1201:1505:59795#49 │ 2 │ [1, 1, 4, 4, 1, 1, 1, 4, 1, 1, 4, 4] │ AAGGAAAGAAGG │
└─────────────────────────────────┴────────┴──────────────────────────────────────┴──────────────┘
read_fastq() separates input interpretation from output
representation:
input_quality_encodingtells DuckHTS how to decode FASTQ ASCII into numeric qualities. The default is modernphred33. Usephred64,solexa64, orautoonly for legacy files.quality_representation := 'phred'returns canonical numeric qualities asUTINYINT[].quality_representation := 'string'returns canonical Phred+33 text. For legacy inputs this means decode first, then re-encode as modern FASTQ text.
This makes the flow explicit:
- FASTQ text input is decoded according to
input_quality_encoding. - DuckHTS normalizes to numeric Phred values internally.
- Output is either raw numeric quality arrays (
phred) or canonical Phred+33 text (string).
For BAM/CRAM, qualities are already stored as numeric values, so there is no FASTQ text-encoding ambiguity on input.
Use duckhts_fastq_qc(...) for global and per-cycle quality-control
reductions. It consumes the projected sequence and canonical quality
strings in one bounded aggregate instead of creating one SQL row per
base. Expand only the compact cycle result when plotting or joining
per-cycle statistics.
WITH q AS (
SELECT duckhts_fastq_qc(SEQUENCE, QUALITY) AS qc
FROM read_fastq('test/data/r1.fq')
)
SELECT
qc.reads,
qc.bases,
qc.q30_bases,
qc.max_read_length
FROM q;┌────────┬────────┬───────────┬─────────────────┐
│ reads │ bases │ q30_bases │ max_read_length │
│ uint64 │ uint64 │ uint64 │ uint32 │
├────────┼────────┼───────────┼─────────────────┤
│ 5 │ 500 │ 475 │ 100 │
└────────┴────────┴───────────┴─────────────────┘
WITH q AS (
SELECT duckhts_fastq_qc(SEQUENCE, QUALITY) AS qc
FROM read_fastq('test/data/r1.fq')
)
SELECT cycle.cycle, cycle.bases, cycle.quality_sum
FROM q, UNNEST(qc.cycles) AS u(cycle)
ORDER BY cycle.cycle
LIMIT 5;┌────────┬────────┬─────────────┐
│ cycle │ bases │ quality_sum │
│ uint32 │ uint64 │ uint64 │
├────────┼────────┼─────────────┤
│ 1 │ 5 │ 169 │
│ 2 │ 5 │ 160 │
│ 3 │ 5 │ 166 │
│ 4 │ 5 │ 177 │
│ 5 │ 5 │ 185 │
└────────┴────────┴─────────────┘
Use numeric quality arrays when the query genuinely needs the full quality histogram:
SELECT *
FROM detect_quality_encoding('test/data/legacy_phred64.fq');┌─────────┬────────────────────┬────────────────────┬─────────────────┬──────────────────────────┬──────────────────┬──────────────┐
│ format │ observed_ascii_min │ observed_ascii_max │ records_sampled │ compatible_encodings │ guessed_encoding │ is_ambiguous │
│ varchar │ int64 │ int64 │ int64 │ varchar │ varchar │ boolean │
├─────────┼────────────────────┼────────────────────┼─────────────────┼──────────────────────────┼──────────────────┼──────────────┤
│ fastq │ 104 │ 104 │ 1 │ phred33,phred64,solexa64 │ phred64 │ true │
└─────────┴────────────────────┴────────────────────┴─────────────────┴──────────────────────────┴──────────────────┴──────────────┘
WITH q AS (
SELECT NAME, QUALITY
FROM read_fastq(
'test/data/r1.fq',
quality_representation := 'phred'
)
),
expanded AS (
SELECT
NAME,
generate_subscripts(QUALITY, 1) AS pos,
unnest(QUALITY) AS q
FROM q
)
SELECT pos, q AS phred, count(*) AS n_reads
FROM expanded
GROUP BY pos, phred
ORDER BY pos, phred
LIMIT 12;┌───────┬───────┬─────────┐
│ pos │ phred │ n_reads │
│ int64 │ uint8 │ int64 │
├───────┼───────┼─────────┤
│ 1 │ 33 │ 1 │
│ 1 │ 34 │ 4 │
│ 2 │ 32 │ 5 │
│ 3 │ 33 │ 4 │
│ 3 │ 34 │ 1 │
│ 4 │ 34 │ 2 │
│ 4 │ 36 │ 2 │
│ 4 │ 37 │ 1 │
│ 5 │ 37 │ 5 │
│ 6 │ 38 │ 5 │
│ 7 │ 33 │ 1 │
│ 7 │ 35 │ 1 │
└───────┴───────┴─────────┘
12 rows 3 columns
SELECT idx, raw
FROM read_hts_header('test/data/formatcols.vcf.gz', mode := 'raw')
LIMIT 3;┌───────┬─────────────────────────────────────────────────────┐
│ idx │ raw │
│ int64 │ varchar │
├───────┼─────────────────────────────────────────────────────┤
│ 0 │ ##fileformat=VCFv4.3 │
│ 1 │ ##FILTER=<ID=PASS,Description="All filters passed"> │
│ 2 │ ##contig=<ID=1> │
└───────┴─────────────────────────────────────────────────────┘
SELECT seqname, tid, index_type, chunk_beg_vo, chunk_end_vo
FROM read_hts_index_spans('test/data/formatcols.vcf.gz')
LIMIT 3;┌─────────┬───────┬────────────┬──────────────┬──────────────┐
│ seqname │ tid │ index_type │ chunk_beg_vo │ chunk_end_vo │
│ varchar │ int64 │ varchar │ uint64 │ uint64 │
├─────────┼───────┼────────────┼──────────────┼──────────────┤
│ 1 │ 0 │ CSI │ 20381696 │ 23789568 │
└─────────┴───────┴────────────┴──────────────┴──────────────┘
SELECT index_type, octet_length(raw) AS raw_bytes
FROM read_hts_index_raw('test/data/formatcols.vcf.gz');┌────────────┬───────────┐
│ index_type │ raw_bytes │
│ varchar │ int64 │
├────────────┼───────────┤
│ CSI │ 30 │
└────────────┴───────────┘
COPY (
SELECT chrom, start, "end", name
FROM read_bed('test/data/targets.bed')
) TO '/tmp/duckhts_readme_targets.bed' (FORMAT CSV, DELIMITER '\t', HEADER FALSE);SELECT success, output_path, bytes_out
FROM bgzip('/tmp/duckhts_readme_targets.bed',
output_path := '/tmp/duckhts_readme_targets.bed.gz',
keep := TRUE,
overwrite := TRUE);┌─────────┬────────────────────────────────────┬───────────┐
│ success │ output_path │ bytes_out │
│ boolean │ varchar │ int64 │
├─────────┼────────────────────────────────────┼───────────┤
│ true │ /tmp/duckhts_readme_targets.bed.gz │ 107 │
└─────────┴────────────────────────────────────┴───────────┘
SELECT success, output_path, bytes_out
FROM bgunzip('/tmp/duckhts_readme_targets.bed.gz',
output_path := '/tmp/duckhts_readme_targets.roundtrip.bed',
keep := TRUE,
overwrite := TRUE);┌─────────┬───────────────────────────────────────────┬───────────┐
│ success │ output_path │ bytes_out │
│ boolean │ varchar │ int64 │
├─────────┼───────────────────────────────────────────┼───────────┤
│ true │ /tmp/duckhts_readme_targets.roundtrip.bed │ 106 │
└─────────┴───────────────────────────────────────────┴───────────┘
SELECT success, index_format, index_path
FROM bam_index('test/data/range.bam',
index_path := '/tmp/duckhts_readme_range.bam.bai',
threads := 1);┌─────────┬──────────────┬───────────────────────────────────┐
│ success │ index_format │ index_path │
│ boolean │ varchar │ varchar │
├─────────┼──────────────┼───────────────────────────────────┤
│ true │ BAI │ /tmp/duckhts_readme_range.bam.bai │
└─────────┴──────────────┴───────────────────────────────────┘
SELECT success, index_format, index_path
FROM bcf_index('test/data/vcf_file.bcf',
index_path := '/tmp/duckhts_readme_vcf_file.bcf.csi',
threads := 1);┌─────────┬──────────────┬──────────────────────────────────────┐
│ success │ index_format │ index_path │
│ boolean │ varchar │ varchar │
├─────────┼──────────────┼──────────────────────────────────────┤
│ true │ CSI │ /tmp/duckhts_readme_vcf_file.bcf.csi │
└─────────┴──────────────┴──────────────────────────────────────┘
SELECT success, index_format, index_path
FROM tabix_index('/tmp/duckhts_readme_targets.bed.gz',
preset := 'bed',
index_path := '/tmp/duckhts_readme_targets.bed.gz.tbi');┌─────────┬──────────────┬────────────────────────────────────────┐
│ success │ index_format │ index_path │
│ boolean │ varchar │ varchar │
├─────────┼──────────────┼────────────────────────────────────────┤
│ true │ TBI │ /tmp/duckhts_readme_targets.bed.gz.tbi │
└─────────┴──────────────┴────────────────────────────────────────┘
hts_union_query builds a UNION ALL BY NAME across files matching a
glob pattern. Because DuckDB’s query() cannot accept subquery
expressions, use the SET VARIABLE + getvariable() pattern:
SET VARIABLE q = hts_union_query('read_fastq', 'test/data/r*.fq');SELECT filename, count(*) AS n
FROM query(getvariable('q'))
GROUP BY ALL
ORDER BY filename;┌─────────────────┬───────┐
│ filename │ n │
│ varchar │ int64 │
├─────────────────┼───────┤
│ test/data/r1.fq │ 5 │
│ test/data/r2.fq │ 5 │
└─────────────────┴───────┘
Per-file parameters can be passed as the third argument (SQL literal):
SET VARIABLE q = hts_union_query('read_bam', 'test/data/range.bam',
'region := ''CHROMOSOME_I:1-1000''');SELECT count(*) AS n FROM query(getvariable('q'));┌───────┐
│ n │
│ int64 │
├───────┤
│ 2 │
└───────┘
Remote URLs (S3/GCS/HTTP/S) can work in two htslib build modes:
- Dynamic plugin mode (
ENABLE_PLUGINS): remote handlers are loaded fromHTS_PATH. - Static-handler mode (plugins disabled): handlers are compiled into
libhtsandHTS_PATHis not needed.
Use HTS_PATH only when you want dynamic plugin discovery (for example,
to point at an external htslib plugin directory). Rduckhts users only
need to call the public helper before the first HTS file is opened:
library(Rduckhts)
setup_hts_env()Example (works in static-handler mode and plugin mode):
SELECT CHROM, COUNT(*) AS n
FROM read_bcf('s3://1000genomes-dragen-v3.7.6/data/cohorts/gvcf-genotyper-dragen-3.7.6/hg19/3202-samples-cohort/3202_samples_cohort_gg_chr22.vcf.gz',
region := 'chr22:16050000-16050500')
GROUP BY CHROM;For a direct DuckDB CLI process, set HTS_PATH explicitly before its
first HTS read, for example:
export HTS_PATH=$(Rscript --quiet -e 'Rduckhts::setup_hts_env(); cat(Sys.getenv("HTS_PATH"),sep="")')If htslib has already opened a file in the process, restart the process
after changing HTS_PATH; plugin discovery has already occurred.
If you don’t have htslib plugins installed locally, download the
prebuilt binaries from the r-universe-binaries GitHub release and point
HTS_PATH at the extracted htslib/libexec/htslib directory inside the
package bundle.
https://github.com/RGenomicsETL/duckhts/releases/tag/r-universe-binaries
For browser wasm/webR builds, DuckHTS does not use htslib libcurl
for remote http/https access.
- The webR side-module path disables htslib
libcurl/S3/GCSfeatures because socket-based libcurl calls from a wasm side module are not reliable in the current webR runtime model. - DuckHTS registers a package-owned htslib
hFILEscheme handler implemented insrc/wasm_http_hfile.cforhttpandhttps. - This backend uses synchronous
XMLHttpRequestfrom the worker for range reads, index probes, and seek behavior.
Browser constraints still apply:
- Remote hosts must allow CORS for the main file and index sidecars
(
.tbi/.csi), including range requests. - Behavior can vary by browser and by server-side CORS policy changes over time.
ALL_PROXY/ websocket proxy settings do not affect this XHR backend.
Optional header/auth configuration for browser wasm can be provided from JavaScript before loading/querying:
Module.duckhtsWasmHttpConfig = {
headers: {
Authorization: "Bearer <short-lived-token>",
"X-Request-Source": "webr-local"
},
allowHosts: ["ftp.ebi.ac.uk", ".s3.amazonaws.com"],
enforceHostAllowlist: true,
withCredentials: false,
allowInsecureAuth: false
};Security behavior of this config:
- Headers are only attached when the URL hostname matches
allowHosts. - Requests are blocked for non-matching hosts when
enforceHostAllowlist: true. Authorizationis blocked on non-HTTPS URLs unlessallowInsecureAuth: trueis set explicitly.- Credentials/cookies are only sent when
withCredentials: trueis set.
DuckHTS is also intended to run as a generic DuckDB community extension in browser wasm hosts (not only webR).
Use the local duckdb-wasm setup to exercise that path end-to-end:
./scripts/start_duckdb_wasm_local_test.shThis setup uses a Docker-only build path via
scripts/docker/duckdb-wasm-local.Dockerfile.
The container pre-installs cache-friendly, pinned wasm build
dependencies (emsdk, vcpkg) so repeated local runs do minimal setup
work.
Builds run in an isolated mirror worktree (.duckdb_wasm_docker_work)
and copy back only the wasm extension artifact, so your host native
build/ and cmake_build/ trees remain available for normal native
development and testing.
Then open:
http://127.0.0.1:8001/scripts/duckdb-wasm-local-test.html
This setup loads duckhts.duckdb_extension.wasm in duckdb-wasm, runs
local HTTP reader checks, and lets you set/clear
Module.duckhtsWasmHttpConfig directly in the browser host runtime.
The setup stages duckdb-browser.mjs, duckdb-browser-eh.worker.js,
and duckdb-eh.wasm at the site root for same-origin runtime loading,
while using an import map for apache-arrow resolution.
The htslib S3 plugin supports credentials embedded in the URL or provided via environment variables or standard credentials files. For AWS-style credentials, the most common variables are:
AWS_ACCESS_KEY_IDAWS_SECRET_ACCESS_KEYAWS_SESSION_TOKEN(optional, for temporary credentials)AWS_DEFAULT_REGIONAWS_PROFILE/AWS_DEFAULT_PROFILEAWS_SHARED_CREDENTIALS_FILE(override credentials file location)
You can also configure htslib-specific settings like
HTS_S3_ADDRESS_STYLE, HTS_S3_HOST, and HTS_S3_S3CFG for
non-default S3 endpoints or path-style access.
See the htslib S3 plugin documentation for full details, URL syntax, and short‑lived credentials support: https://www.htslib.org/doc/htslib-s3-plugin.html
This README is rendered with
duckknit to execute SQL snippets
in a persistent DuckDB session. It discovers duckdb on PATH;
DUCKDB_CLI selects an explicit executable path.
Clone the pinned extension build tools, then create the local Python test environment and platform receipt:
git clone --recurse-submodules https://github.com/RGenomicsETL/duckhts.git
cd duckhts
make configuremake configure is an explicit network bootstrap for the Python
SQLLogicTest runner. Normal native builds use the committed DuckDB
headers and vendored C sources; they do not download inputs. Note: MSVC
builds (windows_amd64/windows_arm64) are not supported. Use MinGW/RTools
for Windows.
Building the extension requires:
- C compiler (GCC or Clang)
- CMake ≥ 3.5
- Make
- Python 3 + venv
- Git
- htslib build dependencies: zlib, libbz2, liblzma, libdeflate, libcurl, libcrypto (OpenSSL)
Rendering the root documentation additionally requires R with
rmarkdown and duckknit.
Rebuilding DuckVEP’s executable VEP conformance evidence additionally
requires R with {targets}, Perl/BioPerl, micromamba for the pinned
oracle environment, and blit for
non-interactive process execution. Those conformance tools are not
runtime or extension-build dependencies.
On Debian/Ubuntu:
sudo apt install build-essential cmake python3 python3-venv git \
zlib1g-dev libbz2-dev liblzma-dev libdeflate-dev libcurl4-openssl-dev libssl-devOn macOS:
brew install cmake htslib xz libdeflateThe clone already contains the pinned htslib source. Vendoring scripts are dependency-maintainer operations, not development setup.
make configure # one-time setup (Python venv, platform detection)
make release # build optimised extensionThe build runs htslib’s Makefile
(make lib-static) in-tree.
The extension binary is written to
build/release/duckhts.duckdb_extension.
make debug-- Unsigned extensions must be loaded with -unsigned flag:
-- duckdb -unsigned
LOAD '/path/to/duckhts.duckdb_extension';SQL tests live in test/sql/ using DuckDB’s
SQLLogicTest format. The small fixtures and required indexes are
committed under test/data/; a fresh clone does not prepare or download
test data. The test target removes declared generated outputs after each
file.
make test_releasePersistent external inputs and derived benchmark relations live outside
the clone under $DUCKHTS_CACHE_DIR (default ~/.cache/duckhts).
Explicit staging commands download only missing inputs from their
recorded public source and write a nearby provenance TSV with the
source, release, transformation, and consumer path. Benchmark rendering
never downloads inputs while measuring.
make stage-liftover-references
make stage-giab-v4.2.1
make stage-norm-1000g-dragen-gvcfUse DUCKHTS_CACHE_DIR=/path/to/cache to relocate the complete
external-data cache.
- DuckDB: https://duckdb.org/
- DuckDB Extension API: https://duckdb.org/docs/extensions/overview
- DuckDB extension template (C): https://github.com/duckdb/extension-template-c
- htslib: https://github.com/samtools/htslib
- RBCFTools: https://github.com/RGenomicsETL/RBCFTools
- duckknit: https://github.com/rundel/duckknit
MIT