Skip to main content
  1. Posts/

Efficient Genomic Interval Search Using SIMD-Enhanced COITree

1412 words·7 mins· loading · loading · ·
Rust Algorithm Bioinformatics
Table of Contents

Background
#

In bioinformatics, researchers frequently analyze various types of genomic data, such as DNA sequencing data, RNA sequencing data, and epigenetic data. Manipulating genomic intervals is a crucial task in comprehending the genetic basis of diseases and identifying potential therapeutic targets. Genomic intervals are defined as regions that span from a starting position to an ending position and can encompass genes, regulatory elements, and other functional elements of the genome. One primary application of genomic interval manipulation is analyzing ChIP-seq data. Moreover, manipulating genomic intervals allows for the integration of ChIP-seq data with other genomic data types, such as gene expression and genetic variations. This integration provides a more comprehensive understanding of biological processes and their contribution to normal development or disease. However, integrating these data types into a single data structure can pose challenges, especially when handling large datasets. Cache Oblivious Interval Trees (COITree), with cache-oblivious design and efficient query algorithms, have the potential to handle and integrate multiple types of genomic data into a single data structure. It stores the intervals in contiguous memory and employs in-order van Emde Boas layout to enhance query performance ( Citation: , & al., , & (). Design and implementation of an efficient priority queue. Math. Systems Theory, 10(1). 99–127. https://doi.org/10.1007/BF01683268 ) . The tree is designed to optimize cache performance by reducing the number of cache misses during traversal ( Citation: , (). Preserving order in a forest in less than logarithmic time and linear space. Inf. Process. Lett., 6(3). 80–82. https://doi.org/10.1016/0020-0190(77)90031-X ) . However, COITree still suffer from performance bottlenecks, particularly when dealing with large datasets. One approach to addressing this bottleneck is to use Single Instruction Multiple Data (SIMD), which is optimized for vector operations, to improve the performance of COITree. Thus, I hypothesize that the approach is a viable solution for improving the speed and efficiency of genomic interval analysis.

How transfer avx2 to neon
#

Neon instruction set is a specialized instruction set available in arm64 architecture that enables Single Instruction Multiple Data (SIMD) processing. It facilitates executing a single instruction on multiple pieces of data simultaneously, resulting in a significant performance improvement. This feature enables more accurate and comprehensive analyses of large-scale genomic data, leading to novel insights into the genetic basis of diseases and the development of more effective treatments. Furthermore, it can reduce the need for computational resources, which is especially important in processing large datasets. Overall, I intend to develop optimized COITree to address a critical need in bioinformatics for faster and more efficient methods of analyzing gnomic data.

Result
#

To evaluate the performance benefits of using neon instruction set in COITree, I will conduct bench-marking tests with and without the neon instruction set, as well as existing tools including BEDTools (Quinlan and Hall, 2010), Augmented interval list ( Citation: , & al., , & (). Augmented Interval List: a novel data structure for efficient genomic interval search. Bioinformatics, 35(23). 4907–4911. https://doi.org/10.1093/bioinformatics/btz407 ) , and Bedtk ( Citation: & , & (). Bedtk: finding interval overlap with implicit interval tree. Bioinformatics, 37(9). 1315–1316. https://doi.org/10.1093/bioinformatics/btaa827 ) . The evaluation task involves interval search problem that is fundamental to genomic data analysis. For benchmarking data, I will use stratification BED files from the Global Alliance for Genomics and Health (GA4GH) Benchmarking ( Citation: , & al., , , , , , , , , , , , , , , , & (). Best practices for benchmarking germline small-variant calls in human genomes. Nat. Biotechnol., 37. 555–560. https://doi.org/10.1038/s41587-019-0054-x ) . By comparing the effectiveness of COITree with neon instruction set against state-of-the-art tools, we can determine whether this approach can significantly enhance the speed and efficiency of genomic data analysis

A genomic interval \(r\) is defined by two coordinates that represent the start and end locations of a feature on a chromosome. The general interval search problem is defined as follows ( Citation: , & al., , & (). Augmented Interval List: a novel data structure for efficient genomic interval search. Bioinformatics, 35(23). 4907–4911. https://doi.org/10.1093/bioinformatics/btz407 ) .

Given a set of \(N\) intervals in a \(R = {r_1, r_2, \dots,r_N} ; for ; N \gg 1 \), and a query interval \( q \), find the subset of \( S \) of \( R \) that intersect \(q\). If we define all intervals to be half-open, \( S \) can be represented as:

$$ S(q) = \{ r \in R \;| \; (r.start < q.end \wedge r.end > q.start)\} $$

I have implemented the optimized COITree in Rust. To evaluate its performance, I used two genomic interval datasets A and B from GA4GH. Dataset A and B contain 4816112 and 44426501 genomic intervals, respectively. I compared the performance with and without the neon instruction set as well as existing tools including BEDTools (v2.30.0), Augmented interval list (v0.1.1), and Bedtk (v0.0-r25dirty). I query every genomic interval of dataset A on dataset B, and the total overlapping genomic intervals is 35 032 849. As BEDTools and bedtk provide enrich features, I used subcommand coverage of BEDTools and subcommand cov of Bedtk to find overlapping intervals. Other tools are designed to the problem so that I do not need to use subcommand. I used hyperfine ( Citation: , (). hyperfine. Retrieved from https://github.com/sharkdp/hyperfine ) , which is command-line benchmarking tool, to evaluate the performance.

For each tool, I warmed up the tool three times before executing it ten times. All experiments were run on a computer with macOS 12.6.6.3 2 21G320 arm64 and 32 GB of memory. In the case of sorted datasets, the optimized COITree outperformed all other tools, as shown in Table 1.

Table 1: Runtime of tools on the sorted dataset

CommandMean [s]Min [s]Max [s]Relative
coitree-default4.364.284.441.24
coitree-neon3.533.503.571.00
ailist5.635.545.871.59
bedtk cov4.704.674.751.33
bedtools coverage -counts -sorted13.4813.4013.643.82

Table 2: Runtime of tools on the unsorted dataset

CommandMean [s]Min [s]Max [s]Relative
coitree-neon5.465.435.501.00
coitree-default6.416.356.441.17
ailist6.496.486.491.19
bedtk cov7.116.977.181.30
bedtools coverage -counts256.08244.48276.6546.88

Since sorted datasets reduce the complexity of the problem, we may not observe a relatively significant speedup. Therefore, I shuffled interval dataset B and repeated the experiment. As shown in Table 2, the optimized COITree demonstrated the best performance, and was about 46 times faster than BEDTools. Our results demonstrate a substantial performance improvement when using the Neon instruction set, especially on unsorted datasets. The tests also showed that the performance gain was particularly noticeable when working with large datasets.

In conclusion, incorporating SIMD in COITree can significantly enhance its performance. This strategy can also be applied to other data structures, providing a way to optimize performance. By leveraging the power of specialized instruction sets such as Neon, we can achieve more efficient and performant algorithms. The optimized COITree will empower researchers to mine genomics data more ergonomically and efficiently. The code for optimized implementation in Rust is freely available.

cauliyang/coitrees

A very fast interval tree data structure

Rust
2
0

I also gave a presentation for the work if you are interested in that please check the slides.

Reference
#

Feng, Ratan & Sheffield (2019)
, & (). Augmented Interval List: a novel data structure for efficient genomic interval search. Bioinformatics, 35(23). 4907–4911. https://doi.org/10.1093/bioinformatics/btz407
Krusche, Trigg, Boutros, Mason, De La Vega, Moore, Gonzalez-Porta, Eberle, Tezak, Lababidi, Truty, Asimenos, Funke, Fleharty, Chapman, Salit & Zook (2019)
, , , , , , , , , , , , , , , & (). Best practices for benchmarking germline small-variant calls in human genomes. Nat. Biotechnol., 37. 555–560. https://doi.org/10.1038/s41587-019-0054-x
Li & Rong (2021)
& (). Bedtk: finding interval overlap with implicit interval tree. Bioinformatics, 37(9). 1315–1316. https://doi.org/10.1093/bioinformatics/btaa827
Peter (2022)
(). hyperfine. Retrieved from https://github.com/sharkdp/hyperfine
Emde Boas, Kaas & Zijlstra (1976)
, & (). Design and implementation of an efficient priority queue. Math. Systems Theory, 10(1). 99–127. https://doi.org/10.1007/BF01683268
Emde Boas (1977)
(). Preserving order in a forest in less than logarithmic time and linear space. Inf. Process. Lett., 6(3). 80–82. https://doi.org/10.1016/0020-0190(77)90031-X

Related

How to Use Noodles Library in Rust
2058 words·10 mins· loading · loading
Rust Bioinformatics
Bioinformatics Algorithm Library aka BINARY
110 words·1 min· loading · loading
Bioinformatics C++ Algorithm Data Structure
Nei Saitou Neighbor Joining
3625 words·18 mins· loading · loading
Bioinformatics Algorithm