Draws an interactive horizontal acyclic graph that maps a hierarchy structure of a gene family at genenames.org. Hovering over a node will create a tooltip with a link to the gene family page at HGNC's genenames.org. The nodes can be moved by the user within the map and by click and holding on the node the path through the hierarchy centereed on the selected family will be highlighted.
For a live demo visit http://hgnc.github.io/hgnc-gene-family-mapper
To install iHAG the easiest way would be to install bower as described in the bower documentation and then simply run the following in your js directory:
$ bower install git://github.com/HGNC/hgnc-gene-family-mapper.git
Javascript dependencies:
Simply add a <div id='YOUR-CHOICE-OF-ID' data-gf-id="GF ID"></div>
anywhere in your <body>
.
Replace YOUR-CHOICE-OF-ID for a HTML ID of your choice and replace GF ID with a HGNC gene family ID. Then at the bottom of the <body>
add your javascript dependencies:
<script type="text/javascript" src="https://github.com/HGNC/hgnc-gene-family-mapper/raw/master/js/bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="https://github.com/HGNC/hgnc-gene-family-mapper/raw/master/js/bower_components/raphael/raphael-min.js"></script>
<script type="text/javascript" src="https://github.com/HGNC/hgnc-gene-family-mapper/raw/master/js/bower_components/jquery.raphael.spinner/jquery.raphael.spinner.js"></script>
<script type="text/javascript" src="https://github.com/HGNC/hgnc-gene-family-mapper/raw/master/js/bower_components/qTip/jquery.qtip.min.js"></script>
<script type="text/javascript" src="https://github.com/HGNC/hgnc-gene-family-mapper/raw/master/js/bower_components/iHAG/iHAG.js"></script>
<script type="text/javascript" src="https://github.com/HGNC/hgnc-gene-family-mapper/raw/master/js/bower_components/hgnc-gene-family-mapper/hgnc-gene-family-mapper.js"></script>
Finally call the drawGFMap('YOUR-CHOICE-OF-ID')
function beneth the script dependencies with optional settings:
<script type="text/javascript">
$(document).ready(function(){
drawGFMap('YOUR-CHOICE-OF-ID', {
titleColor: "#003366"
});
});
</script>
drawGFMap() has one required argument which is the id of the div to contain the map, and has one optional argument which is a settings object.