Home

Awesome

pyStraw: rapidly stream data from .hic files - python only flavor [DEPRECATED]

Straw is library which allows rapid streaming of contact data from .hic files. This repository contains source code for the pure Python flavor Straw, which is kept only for legacy purposes. The latest straw code can be found at https://github.com/aidenlab/straw/

For questions, please use the Google Group.

If you use this tool in your work, please cite

Neva C. Durand, James T. Robinson, Muhammad S. Shamim, Ido Machol, Jill P. Mesirov, Eric S. Lander, and Erez Lieberman Aiden. "Juicebox provides a visualization system for Hi-C contact maps with unlimited zoom." Cell Systems 3(1), 2016.

Straw

Straw enables programmatic access to .hic files. .hic files store the contact matrices from Hi-C experiments and the normalization and expected vectors, along with meta-data in the header.

The main function, straw, takes in the normalization, the filename or URL, chromosome1 (and optional range), chromosome2 (and optional range), whether the bins desired are fragment or base pair delimited, and bin size.

It then reads the header, follows the various pointers to the desired matrix and normalization vector, and stores as [x, y, count]

Usage: straw <NONE/VC/VC_SQRT/KR> <hicFile(s)> <chr1>[:x1:x2] <chr2>[:y1:y2] <BP/FRAG> <binsize>

See https://github.com/theaidenlab/straw/wiki/Python for more documentation

Install

Straw uses the requests library for support of URLs. Be sure it is installed.

Examples

Usage: strawObj = straw <hicFile(s)> matrixObj = strawObj.getNormalizedMatrix <chr1> <chr2> <NONE/VC/VC_SQRT/KR> <BP/FRAG> <binsize> data = matrixObj.getDataFromBinRegion <x1,x2,y1,y2>

See the script straw.py for an example of how to print the results to a file.

Read header/metadata

See the file read_hic_header.py for a Python script that reads the header of a hic file and outputs the information (including resolutions).