Skip to content
Permalink
2ca2ae0c98
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
35 lines (30 sloc) 1.18 KB
<html>
<head>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script>
<script src="../VQI_Publisher.js"></script>
<script src="./jquery.tipsy.js"></script>
<script src="./d3.tip.v0.6.3.js"></script>
<script src="VQI_GenomeBrowser.js"></script>
<link href="tipsy.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="test">
</div>
<div id="test2">
</div>
<footer>
<script type="text/javascript">
var obj = new VQI_GenomeBrowser("test");
var file_dir = "./";
var cpg = file_dir + "./CpG_site_hg19.txt";
var shoer = file_dir + "./shoer_hg19.txt";
var shelf = file_dir + "./shelve_hg19.txt";
obj.loadCPGFiles(cpg, shoer, shelf);
var genomeFile = file_dir + "./hg19_refgene.txt";
obj.addTrackFile(genomeFile, "HG19");
</script>
</footer>
</body>
</html>