Skip to content
/ iitii Public

Implicit Interval Tree with Interpolation Index

License

Notifications You must be signed in to change notification settings

mlin/iitii

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iitii

Implicit Interval Tree with Interpolation Index

iitii is a data structure for indexing begin/end position intervals, such as genomic feature annotations, and answering requests for all items overlapping a query interval. Building on cgranges by Heng Li, iitii explores ideas from DBMS interpolation search and learned index structures to speed up queries on large datasets.

We have notes on cgranges for background; briefly, it stores the items in a flat array, sorted by interval begin position, and interprets the array as an implicit augmented interval tree. Following a textbook algorithm, queries descend through the tree levels and narrow down a subtree which must contain the result set. If (i) most of the indexed intervals are small, (ii) most queries are small intervals, and (iii) neither distribute too pathologically, then the relevant subtrees tend to be small & near the leaves. The top-down search spends most of ~log2 N iterations wading through higher tree levels.

iitii shortcuts the top-down search by starting from an internal node (or leaf) whose begin position is near the query's. From this starting node, climb up its parents as needed to find a sufficient subtree root, then execute the top-down search from there. For small query intervals this "middle-out" search often has to traverse substantially fewer than log2 N nodes with improved cache-locality. An extra "augmentation" value in each node helps prove subtree sufficiency whilst climbing from below.

But don't we first have to search for a suitable starting node, defeating the point? Not if it's practically sufficient to guess one quickly. An accurate guess helps narrow down the result set, while a poor guess still yields the correct c results in O(log2 N + c) steps. If the guess is horrible, we effectively just climb up to the root and search down from there.

How to guess the start node? iitii's indexing procedure includes a simple linear regression of each node's rank within its tree level on its interval begin position. Given a query interval [qbeg, qend), we can use the model prediction (rank ~ w·qbeg+w0) to select a node at which to begin, and then jump to the corresponding index in the sorted array. If the model is accurate and (i-iii) above hold, then iitii queries enjoy average-case speedup over the textbook algorithm.

To improve the rank prediction, iitii can also partition the begin position range into a fixed number of domains, each with its own preferred starting level and regression model; and apply the domain-specific model when presented with a query. The starting level is chosen while indexing each domain, by minimizing estimated search cost based on the regression accuracy on each level and the tendency of domain items to overlap. These elaborations help when item density and/or overlap tendency fluctuate along the position range, for example varying with regional GC% along a chromosome.

If the data distribution is too challenging for this piecewise-linear model, in principle one could switch to any nonlinear regression method; even so far as neural nets, as explored in The Case for Learned Index Structures, if the accuracy offsets the cost of prediction to start each query. Further to the related work already mentioned, iitii takes inspiration from Sapling by Kirsche & Schatz and LISA by Ho et al., which deploy similar ideas for sequence search. In broad strokes, seeking to an approximate location in sorted intervals recalls the binning scheme employed in UCSC Genome Browser and tabix.

Usage

// g++ -std=c++11 -o example example.cc
#include <iostream>
#include <vector>
#include "iitii.h"

using intpair = std::pair<int,int>;
int p_get_beg(const intpair& p) { return p.first; }
int p_get_end(const intpair& p) { return p.second; }
using p_iitii = iitii<int, intpair, p_get_beg, p_get_end>;  // first arg is position type

int main() {
    p_iitii::builder br;
    br.add(intpair(12,34));
    br.add(intpair(0,23));
    br.add(intpair(34,56));
    p_iitii db = br.build(1);  // 1 = # domains
    // alternative: p_iitii db = p_iitii::builder(container.begin(), container.end()).build(1);

    std::vector<const intpair*> results = db.overlap(22, 25);
    // alternative: db.overlap(22, 25, results);

    for (const auto& p : results)
        std::cout << p->first << "\t" << p->second << std::endl;
    return 0;
}

Experiment: synthetic ideal

First we tested iitii using intervals whose positions are predicted perfectly by the linear model: each node ranked r has begin position 10r, with geometrically-distributed length, mean 20. We measured the time to run 10 million queries (uniform random begin, geometric length mean 10) using iitii and iit, the included vanilla reimplementation of cgranges.

image

iiti yields a huge advantage in this ideal setting, growing along with the number N of items indexed. Some of iitii's slope is probably because of my computer's thermal problems.

Experiment: gnomAD variants

Next, we used the gnomAD chr2 sites VCF file, with about 20 million variant sites. We loaded the variants from varying-sized segments of the chromosome into iit and iitii with varying numbers of model domains. Against each structure we perform 10 million queries, 50% for the interval of one of the indexed variants picked at random, and the other 50% for 10bp intervals with uniform random begin positions in the relevant range.

image

iitii starts to yield substantial gains using a few hundred domains (256 domains is roughly one per Mbp of the full chromosome, while 65,536 is roughly one per 4Kbp). Within reason, using a lot of domains doesn't cost much time: during indexing, each models only its proportionate partition of the data, and during query, the appropriate parameters are looked up by offset. We can see a certain over-fitting effect for the smaller datasets, wherein the 65,536 domains tend to be too sparse.

This gnomAD VCF is probably as close to ideal for iitii as real genomic data will get: the intervals are short, with limited overlaps, dispersed quite regularly throughout the chromosome. At this early stage there's still low-hanging fruit for substantial improvement even in this setting, and much further research can be envisioned for deploying these techniques on not-so-nicely-behaved datasets.

About

Implicit Interval Tree with Interpolation Index

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published