forked from igvteam/igv.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlarge-wig.html
48 lines (33 loc) · 1.05 KB
/
large-wig.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta content="" name="description">
<meta content="" name="author">
<link href=../img/favicon.ico rel="shortcut icon">
<title>IGV - Dev</title>
<!-- IGV CSS -->
<link href="css/dev.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="igvDiv" style="padding-top: 50px;padding-bottom: 20px; height: auto"></div>
<script type="module">
import igv from "../js/api.js";
const options =
{
genome: "dm6",
tracks: [
{
name: "Large WIG",
url: "https://www.dropbox.com/s/ipzuyjjkyf932ny/GSM1101656_hsCTCF_treat.wig?dl=0"
}
]
};
igv.createBrowser(document.getElementById('igvDiv'), options)
.then(function (browser) {
})
</script>
</body>
</html>