hic2cool

Lightweight converter between hic and cool contact matrices.

https://github.com/4dn-dcic/hic2cool

Science Score: 10.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    2 of 6 committers (33.3%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.4%) to scientific vocabulary

Keywords

bioinformatics contact-matrices converter cooler hi-c juicer
Last synced: 9 months ago · JSON representation

Repository

Lightweight converter between hic and cool contact matrices.

Basic Info
  • Host: GitHub
  • Owner: 4dn-dcic
  • License: mit
  • Language: Python
  • Default Branch: master
  • Homepage:
  • Size: 142 MB
Statistics
  • Stars: 74
  • Watchers: 9
  • Forks: 10
  • Open Issues: 21
  • Releases: 17
Topics
bioinformatics contact-matrices converter cooler hi-c juicer
Created over 9 years ago · Last pushed almost 2 years ago
Metadata Files
Readme License

README.md

hic2cool

Build Status

Converter between hic files (from juicer) and single-resolution or multi-resolution cool files (for cooler). Both hic and cool files describe Hi-C contact matrices. Intended to be lightweight, this can be used as an imported package or a stand-alone Python tool for command line conversion

The hic parsing code is based off the straw project by Neva C. Durand and Yue Wu. The hdf5-based structure used for cooler file writing is based off code from the cooler repository.

Important

  • Starting from version 0.8.0, hic2cool no longer supports Python 2.7.

  • If you converted a hic file using a version of hic2cool lower than 0.5.0, please update your cooler file with the new update function.

Using the Python package

$ pip install hic2cool

You can also download the code directly and install using Poetry (as of version 1.0.0)

$ poetry install

Once the package is installed, the main method is hic2coolconvert. It takes the same parameters as hic2cool.py, described in the next section. Example usage in a Python script is shown below or in test.py. ``` from hic2cool import hic2coolconvert hic2cool_convert(, , , , , ) ```

Converting files using the command line

The main use of hic2cool is converting between filetypes using hic2cool convert. If you install hic2cool itself using pip, you use it on the command line with: $ hic2cool convert <infile> <outfile> -r <resolution> -p <nproc>

Arguments for hic2cool convert

infile is a .hic input file.

outfile is a .cool output file.

-r, or --resolution, is an integer bp resolution supported by the hic file. Please note that only resolutions contained within the original hic file can be used. If 0 is given, will use all resolutions to build a multi-resolution file. Default is 0.

-p, or --nproc, is the number of processes to use. Default 1. The multiprocessing is not very efficient and would slightly improve speed only for large high-resolution matrices.

-w, or --warnings, causes warnings to be explicitly printed to the console. This is false by default, though there are a few cases in which hic2cool will exit with an error based on the input hic file.

-s, or --silent, run in silent mode and hide console output from the program. Default false.

-v, or --version, print out hic2cool package version and exit.

-h, or --help, print out help about the package/specific run mode and exit.

Running hic2cool from the command line will cause some helpful information about the hic file to be printed to stdout unless the -s flag is used.

Output file structure

If you elect to use all resolutions, a multi-resolution .mcool file will be produced. This changes the hdf5 structure of the file from a typical .cool file. Namely, all of the information needed for a complete cooler file is stored in separate hdf5 groups named by the individual resolutions. The hdf5 hierarchy is organized as such:

File --> 'resolutions' --> '###' (where ### is the resolution in bp). For example, see the code below that generates a multi-res file and then accesses the specific resolution of 10000 bp.

``` from hic2cool import hic2cool_convert import cooler

using 0 triggers a multi-res output

hic2coolconvert('myhic.hic', 'my_cool.cool', 0)

will give you the cooler object with resolution = 10000 bp

mycooler = cooler.Cooler('mycool.cool::resolutions/10000') ```

When using only one resolution, the .cool file produced stores all the necessary information at the top level. Thus, organization in the multi-res format is not needed. The code below produces a file with one resolution, 10000 bp, and opens it with a cooler object.

``` from hic2cool import hic2cool_convert import cooler

giving a specific resolution below (e.g. 10000) triggers a single-res output

hic2coolconvert('myhic.hic', 'mycool.cool', 10000) h5file = h5py.File('mycool.cool', 'r')

will give you the cooler object with resolution = 10000 bp

my_cooler = cooler.Cooler(h5file) ```

higlass

Multi-resolution coolers produced by hi2cool can be visualized using higlass. Please note that single resolution coolers are NOT higlass compatible (created when using a non-zero value for -r). If you created a cooler before hic2cool version 0.5.0 that you want to view in higlass, it is highly recommended that you upgrade it before viewing on higlass to ensure correct normalization behavior.

To apply the hic normalization transformations in higlass, right click on the tileset and do the following:

"<name of tileset>" --> "Configure Series" --> "Transforms" --> "<norm>"

higlass img

Updating hic2cool coolers

As of hic2cool version 0.5.0, there was a critical change in how hic normalization vectors are handled in the resulting cooler files. Prior to 0.5.0, hic normalization vectors were inverted by hic2cool. The rationale for doing this is that hic uses divisive normalization values, whereas cooler uses multiplicative values. However, higlass and the 4DN analysis pipelines specifically handled the divisive normalization values, so hic2cool now handles them the same way.

In the near future, there will be a cooler package release to correctly handle divisive hic normalization values when balancing.

To update a hic2cool cooler, simply run: hic2cool update <infile> <outfile (optional)>

If you only provide the infile argument, then the cooler will be updated directly. If you provide an optional outfile file path, then a new cooler updated cooler file will be created and the original file will remain unchanged.

Extracting hic normalization values

As of hic2cool 0.5.0, you can easily extract hic normalization vectors to an existing cooler file. This will only work if the specified cooler file shares the resolutions found in the hic file. To do this, simply run: hic2cool extract-norms <hic file> <cooler file>

You may also provide the optional -e flag, which will cause the mitchondrial chromosome to automatically be omitted from the extraction. This is found by name; the code specifically looks for one of ['M', 'MT', 'chrM', 'chrMT'] (in a case-insensitive way). Just like with hic2cool convert, you can also provide -s and -w arguments.

Changelog

1.0.1

  • Restore command line usage, adds missing README update ### 1.0.0
  • Switch to poetry, upgraded python, numpy, cooler versions, h5file I/O clean up, replace multiprocessing with `multiprocess' ### 0.8.3
  • Partial fix for zlib decompression issue. ### 0.8.2
  • loosened version for numpy, scipy and pandas. ### 0.8.1
  • setup.py takes dependencies directly from requirements.txt (requirements.txt updated to match setup.py) ### 0.8.0
  • multiprocessing support for convert
  • change in usage of convert API due to the addition of the nproc option
  • Python 2.7 is deprecated. ### 0.7.3
  • Pinned pandas==0.24.2 since newer versions deprecate python 2 ### 0.7.2
  • Warning from hic2cool_utils.parse_hic will now output chromsome names, not indices ### 0.7.1
  • Add format and format-version to / collection for multi-resolution coolers written by hic2cool
  • Run hic2cool_update to add these attributes to mcool files generated with previous hic2cool versions
  • Fixed issue where datetime-derived metadata was written as bytestring when using python 2 ### 0.7.0
  • Fixed package issues associated with python 2
  • Fixed issue where some cooler metadata was written as non-unicode when using python 2 ### 0.6.1
  • Fixed input issue with hic2cool update when using python 2 ### 0.6.0
  • Added format-version and storage-type to attributes of output cooler to get up-to-date with cooler schema v3
  • Run hic2cool update to add these attributes to files generated with previous hic2cool versions ### 0.5.1 Fixed packaging issue by adding MANIFEST.in and made some documentation/pypi edits ### 0.5.0 Large release that changes how hic2cool is run
  • hic2cool is now executed with hic2cool <mode>, where mode is one of: [convert, update, extract-norms]
  • Added two new modes: update (update coolers made by hic2cool based on version) and extract-norms (extract hic normalization vectors to pre-existing cooler file)
  • Removed old hic2cool_extractnorms script (this is now run with hic2cool extract-norms)
  • hic normalization vectors are NO LONGER INVERTED when added to output cooler for consistency with the 4DN omics processing pipeline and higlass
  • Missing hic normalization vectors are now represented by vectors of NaN (used to be vectors of zeros)
  • Improvement of help messages when running hic2cool and change around arguments for running the program
  • Test updates ### 0.4.2
  • Fixed issue where hic files could not be converted if they were missing normalization vectors ### 0.4.1
  • Fixed error in reading counts from hic files of version 6
  • Chromosome names are now directly taken from hic file (with exception of 'all') ### 0.4.0 Large patch, should fix most memory issues and improve runtimes:
  • Changed run parameters. Removed -n and -e; added -v (--version) and -w (--warnings)
  • Improved memory usage
  • Improved runtime (many thanks to Nezar Abdennur)
  • hic2cool now does a 'direct' conversion of files and does not fail on missing chr-chr contacts or missing normalization vectors. Finding these issues will cause warnings to be printed (controlled by -w flag)
  • No longer uses the 'weights' column, which is reserved for cooler
  • No longer takes a normalization type argument. All normalization vectors from the hic file are automatically added to the bins table in the output .cool
  • Many other minor bug fixes/code improvement ### 0.3.7 Fixed issue with bin1offset not containing final entry (should be length nbins + 1). ### 0.3.6 Simple release to fix pip execution. ### 0.3.5 README updates, switched cooler syntax in test, and added helpful printing of hic file header info when using the command line tool. ### 0.3.4 Fixed issue where chromosome name was not getting properly set for 'All' vs 'all'. ### 0.3.3 Removed rounding fix. For now, allow py2 and py3 weights to have different number of significant figures (they're very close). ### 0.3.2 Changed output file structure for single resolution file. Resolved an issue where rounding for weights was different between python 2 and 3. ### 0.3.1 Added .travis.yml for automated testing. Changed command line running scheme. Python3 fix in hic2coolutils. ### 0.3.0 Added multi-resolution format to output cool files. Setup argparse. Improved speed. Added tests for new resolutions format.

Contributors

Written by Carl Vitzthum (1), Nezar Abdennur (2), Soo Lee (1), and Peter Kerpedjiev (3).

(1) Park lab, Harvard Medical School DBMI

(2) Mirny lab, MIT

(3) Gehlenborg lab, Harvard Medical School DBMI

Originally published 1/26/17.

Owner

  • Name: 4D Nucleome Data Coordination and Integration Center
  • Login: 4dn-dcic
  • Kind: organization
  • Location: Boston, MA

GitHub Events

Total
  • Issues event: 1
  • Watch event: 8
  • Fork event: 2
Last Year
  • Issues event: 1
  • Watch event: 8
  • Fork event: 2

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 185
  • Total Committers: 6
  • Avg Commits per committer: 30.833
  • Development Distribution Score (DDS): 0.211
Past Year
  • Commits: 4
  • Committers: 1
  • Avg Commits per committer: 4.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Carl Vitzthum c****m@g****m 146
SooLee d****a@g****m 24
Nezar n****r@g****m 8
Tom Kelly s****y@h****m 4
Carl Vitzthum c****m@h****u 2
Burak Han Alver b****r@h****u 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 41
  • Total pull requests: 30
  • Average time to close issues: 3 months
  • Average time to close pull requests: 7 days
  • Total issue authors: 35
  • Total pull request authors: 9
  • Average comments per issue: 2.76
  • Average comments per pull request: 0.77
  • Merged pull requests: 24
  • Bot issues: 0
  • Bot pull requests: 2
Past Year
  • Issues: 0
  • Pull requests: 2
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 2
Top Authors
Issue Authors
  • pkerpedjiev (3)
  • lidaof (3)
  • joachimwolff (2)
  • rahmas36 (2)
  • jinkang1234 (1)
  • mrland99 (1)
  • balwierz (1)
  • chorzow (1)
  • dejunlin (1)
  • aakashsur (1)
  • Captaincapture (1)
  • nikhilp11 (1)
  • rekado (1)
  • SooLee (1)
  • zhixuqiu (1)
Pull Request Authors
  • carlvitzthum (15)
  • SooLee (5)
  • dependabot[bot] (4)
  • clarabakker (2)
  • nvictus (2)
  • VonAlphaBisZulu (2)
  • marcelm (1)
  • pkerpedjiev (1)
  • Kelly-ST-HRI (1)
Top Labels
Issue Labels
Pull Request Labels
dependencies (4)

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 764 last-month
  • Total docker downloads: 176
  • Total dependent packages: 1
  • Total dependent repositories: 1
  • Total versions: 28
  • Total maintainers: 4
pypi.org: hic2cool

Converter between hic files (from juicer) and single-resolution or multi-resolution cool files (for cooler). Both hic and cool files describe Hi-C contact matrices. Intended to be lightweight, this can be used as an imported package or a stand-alone Python tool for command line conversion.

  • Versions: 28
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 764 Last month
  • Docker Downloads: 176
Rankings
Docker downloads count: 1.2%
Downloads: 7.4%
Dependent packages count: 7.4%
Stargazers count: 9.5%
Average: 10.2%
Forks count: 13.4%
Dependent repos count: 22.3%
Maintainers (4)
Last synced: 10 months ago

Dependencies

requirements.txt pypi
  • cooler >=0.8.5
  • h5py >=2.8.0
  • numpy >=1.10.1
  • pandas *
  • scipy *