Skip to content

Commit

Permalink
In example, change default orientation and chromosome scale
Browse files Browse the repository at this point in the history
  • Loading branch information
eweitz committed Aug 19, 2019
1 parent 0a0f2bc commit f7ef134
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions examples/vanilla/compare-whole-genomes.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ <h1>Compare whole genomes | Ideogram</h1>
<ul id="options">
Chromosome scale
<li>
<input type="radio" name="chromosome-scale" id="relative" value="relative" checked>
<label for="relative">Relative</label>
<input type="radio" name="chromosome-scale" id="absolute" value="absolute" checked>
<label for="absolute">Absolute</label>
</li>
<li>
<input type="radio" name="chromosome-scale" id="absolute" value="absolute">
<label for="absolute">Absolute</label>
<input type="radio" name="chromosome-scale" id="relative" value="relative">
<label for="relative">Relative</label>
</li>
<br/>
Orientation
<li>
<input type="radio" name="orientation" id="horizontal" value="horizontal" checked>
<label for="horizontal">Horizontal</label>
<input type="radio" name="orientation" id="vertical" value="vertical" checked>
<label for="vertical">Vertical</label>
</li>
<li>
<input type="radio" name="orientation" id="vertical" value="vertical">
<label for="vertical">Vertical</label>
<input type="radio" name="orientation" id="horizontal" value="horizontal">
<label for="horizontal">Horizontal</label>
</li>
</div>
<div id="ideogram-container"></div>
Expand All @@ -66,7 +66,7 @@ <h1>Compare whole genomes | Ideogram</h1>

var initialized = false;

function onIdeogramLoad() {
function onIdeogramLoad() {
// See HomoloGene entry for MTOR at
// http://www.ncbi.nlm.nih.gov/homologene/3637
// Placements for H. sapiens and M. musculus used below.
Expand Down

0 comments on commit f7ef134

Please sign in to comment.