-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from maxplanck-ie/docs
Docs
- Loading branch information
Showing
6 changed files
with
135 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
News and Developments | ||
===================== | ||
|
||
|
||
Preprint introducing HiCExplorer is now online | ||
---------------------------------------------- | ||
|
||
**March 8, 2017** | ||
|
||
Our #biorXiv preprint on DNA sequences behind Fly genome architecture is online! | ||
|
||
Read the article here : `<http://biorxiv.org/content/early/2017/03/08/115063>`_ | ||
|
||
In this article, we introduce HiCExplorer : Our easy to use tool for HiC data analysis, also available in `Galaxy <https://galaxyproject.org/>`_. | ||
|
||
We also introduce `HiCBrowser <https://github.com/maxplanck-ie/HiCBrowser>`_ : A standalone software to visualize HiC along with other genomic datasets. | ||
|
||
Based on HiCExplorer and HiCBrowser, we built a useful resource for anyone to browse and download the chromosome | ||
conformation datasets in Human, Mouse and Flies. It's called `the chorogenome navigator <http://chorogenome.ie-freiburg.mpg.de/>`_ | ||
|
||
Along with these resources, we present an analysis of DNA sequences behind 3D genome of Flies. Using high-resolution | ||
HiC analysis, we find a set of DNA motifs that characterize TAD boundaries in Flies and show the importance of these motifs in genome organization. | ||
|
||
We hope that these resources and analysis would be useful for the community and welcome any feedback. | ||
|
||
|
||
HiCExplorer wins best poster prize at VizBi2016 | ||
----------------------------------------------- | ||
|
||
**March 20, 2016** | ||
|
||
We are excited to announce that HiCExplorer has won | ||
the `NVIDIA Award for Best Scientific Poster <https://vizbi.org/blog/2016/02/11/nvidia-award-for-best-scientific-poster/>`_ | ||
in VizBi2016, the international conference on visualization of biological data. | ||
|
||
`Read more here <https://vizbi.org/blog/2016/03/20/winner-of-nvidia-best-scientific-poster-award-2/>`_ | ||
|
||
This was our poster : | ||
|
||
.. image:: https://vizbi.org/Posters/Images/2016/B12.png | ||
:scale: 50 % | ||
:alt: HiCExplorer | ||
:align: left |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,14 @@ Requirements | |
------------- | ||
|
||
* Python 2.7 | ||
* numpy >= 1.8.1 | ||
* scipy >= 0.14.0 | ||
* numpy >= 1.10.4 | ||
* scipy >= 0.17.1 | ||
* matplotlib >= 1.5.3 | ||
* pysam >= 0.8.3 | ||
* matplotlib >= 1.3.1 | ||
* bx-python >= 0.7.1 | ||
* intervaltree >= 2.1.0 | ||
* biopython >= 1.65 | ||
* tables >= 3.2.2 | ||
* pyBigWig >=0.2.8 | ||
|
||
The fastet way to obtain **Python 2.7 together with numpy and scipy** is | ||
via the `Anaconda Scientific Python | ||
|
@@ -23,7 +25,7 @@ follow the directions for its installation. All of the requirements for HiCExplo | |
|
||
.. code:: bash | ||
$ conda install -c bioconda hicexplorer=0.1 | ||
$ conda install hicexplorer=1.6 -c bioconda -c conda-forge | ||
Command line installation using ``pip`` | ||
----------------------------------------- | ||
|
@@ -54,8 +56,34 @@ You are highly recommended to use `pip` rather than these more complicated steps | |
|
||
$ git clone https://github.com/maxplanck-ie/HiCExplorer.git | ||
|
||
3. install the source code (if you don't have root permission, you can set | ||
or if you want a particular release, choose one from https://github.com/maxplanck-ie/HiCExplorer/releases: | ||
:: | ||
|
||
$ wget https://github.com/maxplanck-ie/HiCExplorer/archive/1.5.12.tar.gz | ||
$ tar -xzvf | ||
|
||
3. To install the source code (if you don't have root permission, you can set | ||
a specific folder using the ``--prefix`` option) | ||
:: | ||
|
||
$ python setup.py install --prefix /User/Tools/hicexplorer | ||
|
||
|
||
Galaxy installation | ||
-------------------- | ||
|
||
HiCExplorer can be easily integrated into a local `Galaxy <http://galaxyproject.org>`_. | ||
|
||
Installation with Docker | ||
^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
The HiCExplorer Galaxy instance is also available as a docker container, for those wishing to use the Galaxy | ||
framework but who also prefer a virtualized solution. This container is quite simple to install: | ||
|
||
:: | ||
|
||
$ sudo docker pull quay.io/bgruening/galaxy-hicexplorer | ||
|
||
To start and otherwise modify this container, please see the instructions on `the docker-galaxy-stable github repository <https://github.com/bgruening/docker-galaxy-stable>`__. Note that you must use `bgruening/galaxy-deeptools` in place of `bgruening/galaxy-stable` in the examples, as the deepTools Galaxy container is built on top of the galaxy-stable container. | ||
|
||
.. tip:: For support, or feature requests contact: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,8 +92,8 @@ def checkProgramIsInstalled(self, program, args, where_to_download, | |
setup( | ||
name='HiCExplorer', | ||
version=get_version(), | ||
author='Fidel Ramirez', | ||
author_email='[email protected]', | ||
author='Fidel Ramirez, Vivek Bhardwaj, Björn Grüning', | ||
author_email='[email protected]', | ||
packages=['hicexplorer'], | ||
scripts=['bin/findRestSite', 'bin/hicBuildMatrix', 'bin/hicCorrectMatrix', | ||
'bin/hicCorrelate', 'bin/hicFindEnrichedContacts', 'bin/hicFindTADs', | ||
|