Skip to content
Nalini Ganapati edited this page Mar 2, 2021 · 5 revisions

TileDB is a new system for efficient management of scientific data, i.e., of massive quantities of data that are naturally represented by multi-dimensional arrays. TileDB is written in C++ for Ubuntu Linux, CentOS Linux and Mac OS X, and open-sourced under the MIT license. The current release focuses on the TileDB storage manager module exposed as a C API library, which makes it easy for programmers to write applications for diverse, complex, parallel, scientific data analytics.

Visit the TileDB paper as well as TileDB tutorials to read the detailed documentation on the internal TileDB mechanics and the usage of the C API library.

Building TileDB itself is pretty simple. Checkout Building TileDB for more details.

git clone https://github.com/OmicsDataAutomation/TileDB.git
cd TileDB
mkdir build
cd build
cmake ..
make -j4

Clone this wiki locally