-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into roi_set_margin_top
- Loading branch information
Showing
28 changed files
with
1,177 additions
and
992 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
align-items: center; | ||
|
||
// header bar | ||
div:first-child { | ||
>div:nth-child(1) { | ||
|
||
cursor: move; | ||
|
||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<link href=https://igv.org/web/img/favicon.ico rel="shortcut icon"> | ||
<title>IGV - Dev</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<div id="myDiv" style="padding-top: 50px;padding-bottom: 20px; height: auto"> | ||
|
||
</div> | ||
|
||
<script type="module"> | ||
|
||
import igv from "../../js/index.js"; | ||
|
||
const div = document.getElementById("myDiv"); | ||
const options = { | ||
locus: '19:49301000-49305700', | ||
genome: "hg19", | ||
tracks: [ | ||
{ | ||
name: 'All pos bars', | ||
url: '../../test/data/wig/allPositive.bedgraph', | ||
// color: '#0f0', | ||
indexed: false | ||
}, | ||
] | ||
}; | ||
|
||
igv.createBrowser(div, options).then(function (browser) { | ||
}); | ||
|
||
|
||
</script> | ||
|
||
</body> | ||
|
||
</html> | ||
|
Oops, something went wrong.