Short Read Archive
May 29th, 2008
While at Cold Spring Harbor, I attended a presentation by Valex about their format for storing data in the (I mentioned the SRA in a previous post). Rather than storing the data in the current standard for transferring massively-parallel sequencing data, , they have designed a new format that builds on their learnings from the current , but tailors it to the unprecedented amount of data associated with massively-parallel sequence data (Valex are NCBI contractors who developed and maintain the trace archive). The format is a database, with a few twists. First, the database storage utilizes the file system directly rather than storing its data structured within large files. Second, the database is column oriented rather than row oriented. The result is that each SRA submission is a directory on the file system and each data type is stored in a directory within the submission directory.
Column-oriented database architecture is not a new idea, but it does seem well suited for the SRA. In traditional relational databases, a table has several columns of related items. For example, a “person” table might have a column for “first_name”, a column for “last_name”, and a column to hold a unique identifier (id), typically an integer. When you add an entry to the database, you add a row in the table. In the person example, you might add “Jane” in the first_name column, “Doe” in the last_name column, and a unique number in the id column. In a column-based database, you basically translate each column into its own two column table, one column for the data and one for the unique identifier. So in the person example you would still have two “columns”, but the columns would each store the appropriate name (first or last) and the id associated with that name. This architecture performs very well when you only retrieve one type of data at a time. Other advantages include that each column is fully indexed, each column compresses well (since each column contains only one type of data), and adding new data types (columns) is easy. One disadvantage is that every time you want to retrieve more than one data type, a “join” is required. So, for example, if you want to retrieve the sequence base calls and quality values for some number of reads, you will need to find that read separately in the base call column and the base quality column. All in all, it seems the advantages outweigh the disadvantages, especially considering the likely use cases for the data in the SRA.
The best part about their design is that they are planning to release the source code used to create and maintain the SRA freely (when we spoke, they had not settled on a free/open-source license). If they actually follow through with this (which they said would take a few months to remove NCBI-specific code), it would be of great benefit to researchers working with this data as the SRA format is likely more efficient for analyzing this data while the SRF is more efficient for transferring the data. If they don’t follow through, someone else will probably fill the gap as the column-oriented architecture seems to be the right idea and its implementation need not be difficult.
You can find out more detailed information about the SRA format from Valex’s web site which includes a link to and the presentation I saw in PowerPoint format.
Posted in genomics, IT | No Comments »
Tagged with: CSHL, genomics, informatics
You can follow any responses to this entry through the feed. You can leave a response, or trackback from your own site.
Leave a Reply