Skip to content

Commit

Permalink
Bug fix: group autoscale set/unset now works properly (#1708)
Browse files Browse the repository at this point in the history
  • Loading branch information
turner authored Oct 6, 2023
1 parent 3d0e0cd commit 27008fe
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 9 deletions.
3 changes: 1 addition & 2 deletions css/dom.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 26 additions & 1 deletion dev/misc/multi-select.html
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,32 @@
]
};

igv.createBrowser(document.getElementById("myDiv"), overlay_throws_error_config).then(function (browser) {})
const group_autoscale_config = {
genome: "hg19",
locus: "myc",
tracks: [

{
"url": "https://www.encodeproject.org/files/ENCFF754TJH/@@download/ENCFF754TJH.bigWig",
"name": "Encode bigwig",
color: 'rgb(255,0,0)',
height: 256,
"metadata" : {
"Foo": "bar",
"Bar": 999.999
}
},
{
"url": "https://s3-us-west-2.amazonaws.com/ilmn.igv-test/test2.bigWig",
color: 'rgb(0,0,255)',
"name": "Big BigWig",
height: 256
},

]
};

igv.createBrowser(document.getElementById("myDiv"), group_autoscale_config).then(function (browser) {})


</script>
Expand Down
4 changes: 1 addition & 3 deletions js/embedCss.js

Large diffs are not rendered by default.

Loading

0 comments on commit 27008fe

Please sign in to comment.