- Timestamp:
- Feb 20, 2014, 9:48:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/libprep/sequencing_started.jsp
r2231 r2237 153 153 setInnerHTML('startDate', ''); 154 154 setInnerHTML('sequencingCycles', ''); 155 setInnerHTML('flowCellName', 'Flow cell information'); 156 setInnerHTML('pools', ''); 157 setInnerHTML('libPlate', ''); 155 158 Main.hide('existing-sequencing-runs'); 156 159 setInnerHTML('existing-sequencing-runs', ''); … … 247 250 if (flowCell == null) 248 251 { 252 setInnerHTML('flowCellName', 'Can\'t find flow cell ' + info.FlowCellID); 249 253 throw 'Flow cell with ID='+info.FlowCellID+' not found.'; 250 254 } 255 256 setInnerHTML('flowCellName', Main.encodeTags(flowCell.name)); 257 258 var pools = flowCell.pools; 259 var html = ''; 260 var libPlateHtml = ''; 261 for (var poolNo = 0; poolNo < pools.length; poolNo++) 262 { 263 var pool = pools[poolNo]; 264 if (poolNo > 0) html += ', '; 265 html += Main.encodeTags(pool.name); 266 if (pool.LibPlate && libPlateHtml.indexOf(pool.LibPlate.name) == -1) 267 { 268 if (libPlateHtml.length > 0) libPlateHtml += ', '; 269 libPlateHtml += Main.encodeTags(pool.LibPlate.name); 270 } 271 } 272 setInnerHTML('pools', html); 273 setInnerHTML('libPlate', libPlateHtml || 'n/a'); 274 251 275 var html = ''; 252 276 html += '<tr valign="top" class="fc-info">'; 253 html += '<td class="prompt" colspan="2">Existing sequencing runs for ' + flowCell.name + '</td>';277 html += '<td class="prompt" colspan="2">Existing sequencing runs</td>'; 254 278 html += ''; 255 279 html += '<td class="status"></td>'; … … 534 558 </td> 535 559 <td class="status" id="runParametersXml.status"></td> 536 <td class="help" rowspan=" 8"><span id="runParametersXml.message" class="message" style="display:none;"></span>560 <td class="help" rowspan="12"><span id="runParametersXml.message" class="message" style="display:none;"></span> 537 561 Select the <b>runParameters.xml</b> file that was created by the HiSeq. Typically found in 538 562 <b>D:\Illumina\HiSeqTemp\<run-folder></b> subfolder. … … 540 564 </tr> 541 565 <tr valign="top" class="fc-info" style="border-top: 1em solid transparent;"> 566 <td class="prompt" colspan="2">Sequencing information</td> 567 <td class="status"></td> 568 </tr> 569 <tr valign="top" class="fc-info"> 542 570 <td class="subprompt">Experiment</td> 543 571 <td class="input" id="experimentName"></td> … … 572 600 <td class="subprompt">Sequencing cycles</td> 573 601 <td class="input" id="sequencingCycles"></td> 602 <td class="status"></td> 603 </tr> 604 <tr valign="top" class="fc-info"> 605 <td class="prompt" colspan="2" id="flowCellName">Flow cell information</td> 606 <td class="status"></td> 607 </tr> 608 <tr valign="top" class="fc-info"> 609 <td class="subprompt">Pools</td> 610 <td class="input" id="pools"></td> 611 <td class="status"></td> 612 </tr> 613 <tr valign="top" class="fc-info"> 614 <td class="subprompt">LibPlate</td> 615 <td class="input" id="libPlate"></td> 574 616 <td class="status"></td> 575 617 </tr>
Note: See TracChangeset
for help on using the changeset viewer.