-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
20 lines (11 loc) · 1021 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TSF is a columnar chunked and compressed storage format that uses SQLite as a container.
It supports matrix and attribute fields, and is optimized for genomic interval queries (using a tabix-like built-in internal index).
See:
http://blog.goldenhelix.com/grudy/all-i-want-for-christmas-is-a-new-file-format-for-genomics/
Currently the only "writer" for TSF files is Golden Helix's products VarSeq and GenomeBrowse:
http://genomebrowse.com
http://varseq.com
Note all public genomic annotations easily downloadable form VarSeq/GenomeBrowse are TSF files, and it scales quite nicely.
For example, the dbNSFP functional prediction database of ~90 million predictions of 5 algorithm plus gene and variant meta-data (15 string fields) is only ~435MB. A single float field for ~10 million records compresses to about ~20MB.
This an efficient C reader implementation, that supports reading TSF in other contexts (such as in a PostgreSQL Foreign Data Wrapper).
Email Gabe Rudy <[email protected]> with any questions.