File: launchIGV.html

package info (click to toggle)
igv 2.3.38%2Bdfsg-1
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 194,072 kB
  • ctags: 20,659
  • sloc: java: 131,543; xml: 18,718; php: 152; sh: 17; makefile: 11
file content (32 lines) | stat: -rw-r--r-- 743 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE html>
<html>
<head>
    <title>IGV Launch</title>
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <META HTTP-EQUIV="Expires" CONTENT="-1">
    <script type="text/javascript" src="webstart.js"></script>

    <script type="text/javascript">

        var loadFunc = function () {
            var paramString = decodeURIComponent(igv.getQueryValue("paramString"));
            var port = parseInt(igv.getQueryValue("port"));
            var command = igv.getQueryValue("command");
            igv.igvRequest(port, command, paramString);
            return true;
        };

    </script>
</head>
<body onload="loadFunc()">

<b>Attempting to communicate with IGV...</b>

<script type="text/javascript">


</script>


</body>
</html>