extensions/net.sf.basedb.reggie/trunk/resources/analysis/hisat_confirm.js

Code
Comments
Other
Rev Date Author Line
4595 27 Sep 17 nicklas 1 var Hisat = function()
4595 27 Sep 17 nicklas 2 {
4595 27 Sep 17 nicklas 3   var hisat = {};
4595 27 Sep 17 nicklas 4   var debug = 0;
4595 27 Sep 17 nicklas 5   
4595 27 Sep 17 nicklas 6   var JOB_IMAGE = { 'DONE': 'ok.png', 'ERROR': 'error.png'};
4595 27 Sep 17 nicklas 7   
4595 27 Sep 17 nicklas 8   var alignedSequences;
4595 27 Sep 17 nicklas 9   
4595 27 Sep 17 nicklas 10   // Page initialization
4595 27 Sep 17 nicklas 11   hisat.initPage = function()
4595 27 Sep 17 nicklas 12   {
4595 27 Sep 17 nicklas 13     
4595 27 Sep 17 nicklas 14     // Step 1
4595 27 Sep 17 nicklas 15
4595 27 Sep 17 nicklas 16     // Navigation
4595 27 Sep 17 nicklas 17     Buttons.addClickHandler('gocancel', Wizard.cancelWizard);
4595 27 Sep 17 nicklas 18     Buttons.addClickHandler('gorestart', Wizard.restartWizard);
4595 27 Sep 17 nicklas 19     Buttons.addClickHandler('gonext', Wizard.goNextOnClick);
4595 27 Sep 17 nicklas 20     Buttons.addClickHandler('goregister', Wizard.goRegister);
4595 27 Sep 17 nicklas 21       
4595 27 Sep 17 nicklas 22     // Final registration
4595 27 Sep 17 nicklas 23     Events.addEventHandler('wizard', 'wizard-submit', hisat.submit);
4595 27 Sep 17 nicklas 24
4595 27 Sep 17 nicklas 25     Wizard.showLoadingAnimation('Loading bioassays...');
4595 27 Sep 17 nicklas 26     var url = '../Hisat.servlet?ID='+App.getSessionId();
4595 27 Sep 17 nicklas 27     url += '&cmd=GetUnconfirmedAlignedSequences';
4595 27 Sep 17 nicklas 28     Wizard.asyncJsonRequest(url, hisat.initializeStep1);
4595 27 Sep 17 nicklas 29   }
4595 27 Sep 17 nicklas 30   
4595 27 Sep 17 nicklas 31   // --- Step 1 -----------------------------------
4595 27 Sep 17 nicklas 32   hisat.initializeStep1 = function(response)
4595 27 Sep 17 nicklas 33   {
4595 27 Sep 17 nicklas 34     alignedSequences = response.alignedSequences;
4595 27 Sep 17 nicklas 35     if (alignedSequences.length == 0)
4595 27 Sep 17 nicklas 36     {
4595 27 Sep 17 nicklas 37       Wizard.setFatalError('No aligned sequences available for processing.');
4595 27 Sep 17 nicklas 38       return;
4595 27 Sep 17 nicklas 39     }
4595 27 Sep 17 nicklas 40     
4595 27 Sep 17 nicklas 41     var html = '<table id="alignedSequencesTable">';
4595 27 Sep 17 nicklas 42     html += '<thead class="bg-filled-100">';
4595 27 Sep 17 nicklas 43     // Header row
4595 27 Sep 17 nicklas 44     html += '<tr>';
4595 27 Sep 17 nicklas 45     html += '<th></th>';
4595 27 Sep 17 nicklas 46     html += '<th class="dottedleft"></th>';
4657 26 Jan 18 nicklas 47     html += '<th class="dottedleft" colspan="6">Reads (millions)</th>';
4620 16 Nov 17 nicklas 48     html += '<th class="dottedleft" colspan="3">Genotypes QC</th>'
4595 27 Sep 17 nicklas 49     html += '<th class="dottedleft"></th>';
4595 27 Sep 17 nicklas 50     html += '<th class="dottedleft"></th>';
4595 27 Sep 17 nicklas 51     html += '<th class="dottedleft" colspan="3">Actions</th>';
4595 27 Sep 17 nicklas 52     html += '<th class="dottedleft">Comment</th>';
4595 27 Sep 17 nicklas 53     html += '</tr>';
4595 27 Sep 17 nicklas 54     
4595 27 Sep 17 nicklas 55     html += '<tr>';
4595 27 Sep 17 nicklas 56     html += '<th>Library</th>';
4595 27 Sep 17 nicklas 57     html += '<th class="dottedleft">Plate</th>';
4595 27 Sep 17 nicklas 58     html += '<th class="dottedleft">PF_READS</th>';
4595 27 Sep 17 nicklas 59     html += '<th>PT_READS</th>';
4657 26 Jan 18 nicklas 60     html += '<th>PM_READS</th>';
4595 27 Sep 17 nicklas 61     html += '<th>ALIGNED_PAIRS</th>';
4620 16 Nov 17 nicklas 62     html += '<th class="icon-col"></th>';
4620 16 Nov 17 nicklas 63     html += '<th>Duplicates</th>';
4620 16 Nov 17 nicklas 64     html += '<th class="dottedleft">Count</th>';
4620 16 Nov 17 nicklas 65     html += '<th>HET</th>';
4620 16 Nov 17 nicklas 66     html += '<th class="icon-col"></th>';
4595 27 Sep 17 nicklas 67     html += '<th class="dottedleft">Job</th>';
4595 27 Sep 17 nicklas 68     html += '<th class="dottedleft">Files</th>';
6670 07 Apr 22 nicklas 69     html += '<th class="dottedleft"><span id="flagrna" data-prefix="flag" class="interactable link" title="Toggle selection – use CTRL, ALT or SHIFT to clear">Flag RNA</span></th>';
6670 07 Apr 22 nicklas 70     html += '<th><span id="realign" data-prefix="realign" class="interactable link" title="Toggle selection – use CTRL, ALT or SHIFT to clear">Re-align</span></th>';
6670 07 Apr 22 nicklas 71     html += '<th><span id="stringtie" data-prefix="stringtie" class="interactable link" title="Toggle selection – use CTRL, ALT or SHIFT to clear">StringTie</span></th>';
4595 27 Sep 17 nicklas 72     html += '<th class="dottedleft"></th>';
4595 27 Sep 17 nicklas 73     html += '</tr>';
4595 27 Sep 17 nicklas 74     html += '</thead>';
4595 27 Sep 17 nicklas 75     html += '<tbody>';
4595 27 Sep 17 nicklas 76     var numWithError = 0;
4595 27 Sep 17 nicklas 77     var yellowImg = '<img src="../images/yellow-label.png">';
4595 27 Sep 17 nicklas 78     for (var alignedNo = 0; alignedNo < alignedSequences.length; alignedNo++)
4595 27 Sep 17 nicklas 79     {
4595 27 Sep 17 nicklas 80       var aligned = alignedSequences[alignedNo];
4595 27 Sep 17 nicklas 81
4595 27 Sep 17 nicklas 82       var lib = aligned.lib;
4595 27 Sep 17 nicklas 83       lib.stratagene = Reggie.isStratagene(lib.name);
4595 27 Sep 17 nicklas 84       lib.external = Reggie.isExternal(lib.name);
4595 27 Sep 17 nicklas 85       var isYellow = lib.specimen && lib.specimen.YellowLabel != null;
4595 27 Sep 17 nicklas 86       var img = isYellow ? yellowImg : '';
4595 27 Sep 17 nicklas 87
4595 27 Sep 17 nicklas 88       var libPlate = lib.bioWell ? lib.bioWell.bioPlate : null;
4595 27 Sep 17 nicklas 89       
4595 27 Sep 17 nicklas 90       var merged = aligned.merged;
4657 26 Jan 18 nicklas 91       var masked = aligned.masked;
4657 26 Jan 18 nicklas 92       
4595 27 Sep 17 nicklas 93       var pfReads = merged.PF_READS == null ? '-' : Reggie.formatNumber(merged.PF_READS/1000000, null, 2)
4595 27 Sep 17 nicklas 94       var ptReads = merged.PT_READS == null ? '-' : Reggie.formatNumber(merged.PT_READS/1000000, null, 2)
4685 23 Feb 18 nicklas 95       var maskedReads = masked.PM_READS == null ? '-' : Reggie.formatNumber(masked.PM_READS/1000000, null, 2)
4595 27 Sep 17 nicklas 96       var alignedReads = aligned.ALIGNED_PAIRS == null ? '-' : Reggie.formatNumber(aligned.ALIGNED_PAIRS/1000000, null, 2);
4595 27 Sep 17 nicklas 97       var ptPercent = merged.PF_READS && merged.PT_READS ? ' (' + Math.round(100*merged.PT_READS/merged.PF_READS) + '%)' : '';
4595 27 Sep 17 nicklas 98       var alignedPercent = aligned.ALIGNED_PAIRS && merged.PF_READS ? ' (' + Math.round(100*aligned.ALIGNED_PAIRS/merged.PF_READS) + '%)' : '';
4595 27 Sep 17 nicklas 99       var percentDuplicates = aligned.FRACTION_DUPLICATION == null ? '-' : Math.round(100*aligned.FRACTION_DUPLICATION)+'%';
4620 16 Nov 17 nicklas 100       var genotypeCount = aligned.QC_GENOTYPE_COUNT || '-';
5579 20 Aug 19 nicklas 101       var hetPct = aligned.QC_GENOTYPE_HET_PCT == null ? '' : Math.round(aligned.QC_GENOTYPE_HET_PCT)+'%';
4595 27 Sep 17 nicklas 102       var job = aligned.job;
4595 27 Sep 17 nicklas 103       var limits = job.limits;
4595 27 Sep 17 nicklas 104       
4658 26 Jan 18 nicklas 105       var flag = null;
5579 20 Aug 19 nicklas 106       var isError = job.status == 'ERROR';
5579 20 Aug 19 nicklas 107       var stringTieChecked = aligned.ALIGNED_PAIRS != null && aligned.ALIGNED_PAIRS > limits.minAlignedPairsStop;
4595 27 Sep 17 nicklas 108       
4595 27 Sep 17 nicklas 109       html += '<tr class="highlight ' + (alignedNo % 4 < 2 ? 'evenrow' : 'oddrow') + (isYellow ? ' yellow-specimen' : '') +  '">';
4595 27 Sep 17 nicklas 110       html += '<td class="prompt if-yellow">'+img+aligned.name+'</td>';
4595 27 Sep 17 nicklas 111       html += '<td class="dottedleft">'+(libPlate ? Strings.encodeTags(libPlate.name) : '-')+'</td>';
4595 27 Sep 17 nicklas 112       html += '<td class="dottedleft">'+pfReads+'</td>';
4595 27 Sep 17 nicklas 113       html += '<td>'+ptReads+ptPercent+'</td>';
4657 26 Jan 18 nicklas 114       html += '<td>'+maskedReads+'</td>';
4595 27 Sep 17 nicklas 115       html += '<td>'+alignedReads+alignedPercent+'</td>';
4620 16 Nov 17 nicklas 116       html += '<td class="icon-col">';
4595 27 Sep 17 nicklas 117       if (aligned.ALIGNED_PAIRS != null && aligned.ALIGNED_PAIRS < limits.minAlignedPairsFlag)
4595 27 Sep 17 nicklas 118       {
4595 27 Sep 17 nicklas 119         html += '<img src="../images/warning.png" title="Less than '+Reggie.formatCount(limits.minAlignedPairsFlag) + ' aligned pairs">';
4658 26 Jan 18 nicklas 120         flag = 'AlignFailed';
4595 27 Sep 17 nicklas 121       }
4595 27 Sep 17 nicklas 122       html += '</td>';
4595 27 Sep 17 nicklas 123
4620 16 Nov 17 nicklas 124       html += '<td>'+percentDuplicates+'</td>';
4620 16 Nov 17 nicklas 125       html += '<td class="dottedleft">'+genotypeCount+'</td>';
4658 26 Jan 18 nicklas 126       html += '<td>'+hetPct;
5579 20 Aug 19 nicklas 127       if (aligned.QC_GENOTYPE_HET_PCT == null)
4658 26 Jan 18 nicklas 128       {
5579 20 Aug 19 nicklas 129         html += '<img src="../images/warning.png" title="Genotype QC failed">';
5579 20 Aug 19 nicklas 130         isError = true;
5579 20 Aug 19 nicklas 131       }
5579 20 Aug 19 nicklas 132       else if (aligned.QC_GENOTYPE_HET_PCT > limits.maxHetPct)
5579 20 Aug 19 nicklas 133       {
4658 26 Jan 18 nicklas 134         html += '<img src="../images/warning.png" title="More than '+Reggie.formatCount(limits.maxHetPct) + '% HET may indicate contamination">';
4658 26 Jan 18 nicklas 135         if (flag == null) flag = 'HighHET';
4658 26 Jan 18 nicklas 136       }
4658 26 Jan 18 nicklas 137       html += '</td>';
4620 16 Nov 17 nicklas 138       html += '<td class="icon-col">';
4620 16 Nov 17 nicklas 139       if  (aligned.qcVcf)
4620 16 Nov 17 nicklas 140       {
4620 16 Nov 17 nicklas 141         html += '<span class="link vcf-link" data-file-id="'+aligned.qcVcf.id+'" data-item-id="'+aligned.id+'" title="View VCF statistics"><img src="../images/vcf_file.png"></span>';
4620 16 Nov 17 nicklas 142       }
4620 16 Nov 17 nicklas 143       html += '</td>';
4595 27 Sep 17 nicklas 144       html += '<td class="dottedleft">';
4595 27 Sep 17 nicklas 145       html += '<span class="link item-link" data-item-type="JOB" data-item-id="'+job.id+'" title="'+Strings.encodeTags(job.statusMessage)+'"><img src="../images/'+JOB_IMAGE[job.status]+'"></span>';
4595 27 Sep 17 nicklas 146       html += '</td>';
4595 27 Sep 17 nicklas 147       if (aligned.DataFilesFolder && job.server)
4595 27 Sep 17 nicklas 148       {
4595 27 Sep 17 nicklas 149         html += '<td class="dottedleft">';
4595 27 Sep 17 nicklas 150         html += '<span class="link file-link" data-server="'+Strings.encodeTags(job.server)+'" data-folder="'+Strings.encodeTags(aligned.DataFilesFolder)+'" data-item-id="'+aligned.id+'" title="View generated files"><img src="../images/remote_folder.png"></span>';
4595 27 Sep 17 nicklas 151         html += '</td>';
4595 27 Sep 17 nicklas 152       }
4595 27 Sep 17 nicklas 153       else
4595 27 Sep 17 nicklas 154       {
4595 27 Sep 17 nicklas 155         html += '<td class="dottedleft">-</td>';
4595 27 Sep 17 nicklas 156       }
4595 27 Sep 17 nicklas 157       
4595 27 Sep 17 nicklas 158       var realignChecked = isError ? ' checked' : '';
4663 29 Jan 18 nicklas 159       var stringTieDisabled = isError ? ' disabled' : '';
4595 27 Sep 17 nicklas 160       if (isError) numWithError++;
4595 27 Sep 17 nicklas 161       if (lib.stratagene || lib.external)
4595 27 Sep 17 nicklas 162       {
4595 27 Sep 17 nicklas 163         html += '<td class="dottedleft">-</td>';
4595 27 Sep 17 nicklas 164       }
4595 27 Sep 17 nicklas 165       else
4595 27 Sep 17 nicklas 166       {
4658 26 Jan 18 nicklas 167         html += '<td class="dottedleft"><input type="checkbox" name="flag.'+aligned.id+'"'+(flag != null ? ' checked value="'+flag+'"':'')+'></td>';
4595 27 Sep 17 nicklas 168       }
4595 27 Sep 17 nicklas 169       
4595 27 Sep 17 nicklas 170       html += '<td><input type="checkbox" name="realign.'+aligned.id+'"'+realignChecked+'></td>';
4663 29 Jan 18 nicklas 171       html += '<td><input type="checkbox" name="stringtie.'+aligned.id+'"'+stringTieDisabled+(stringTieChecked ? ' checked':'')+'></td>';
4595 27 Sep 17 nicklas 172       html += '<td class="dottedleft comment"><input type="text" name="comment.'+aligned.id+'"></td>';
4595 27 Sep 17 nicklas 173       html += '</tr>';
4595 27 Sep 17 nicklas 174
4595 27 Sep 17 nicklas 175     }
4595 27 Sep 17 nicklas 176     html += '</tbody>';
4595 27 Sep 17 nicklas 177     html += '</table>';
4595 27 Sep 17 nicklas 178     Doc.element('alignedSequences').innerHTML = html;
4595 27 Sep 17 nicklas 179     if (numWithError > 0) Doc.show('delete-items', 'table');
4595 27 Sep 17 nicklas 180     
6670 07 Apr 22 nicklas 181     Events.addEventHandler('flagrna', 'click', hisat.toggleSelection);
6670 07 Apr 22 nicklas 182     Events.addEventHandler('realign', 'click', hisat.toggleSelection);
6670 07 Apr 22 nicklas 183     Events.addEventHandler('stringtie', 'click', hisat.toggleSelection);
6670 07 Apr 22 nicklas 184     
4595 27 Sep 17 nicklas 185     // Add click handler to items
4595 27 Sep 17 nicklas 186     var clickableItems = document.getElementsByClassName('item-link');
4595 27 Sep 17 nicklas 187     for (var i = 0; i < clickableItems.length; i++)
4595 27 Sep 17 nicklas 188     {
4595 27 Sep 17 nicklas 189       Events.addEventHandler(clickableItems[i], 'click', Items.itemOnClick);
4595 27 Sep 17 nicklas 190     }
4595 27 Sep 17 nicklas 191     
4595 27 Sep 17 nicklas 192     // Add click handler to file links
4595 27 Sep 17 nicklas 193     var clickableItems = document.getElementsByClassName('file-link');
4595 27 Sep 17 nicklas 194     for (var i = 0; i < clickableItems.length; i++)
4595 27 Sep 17 nicklas 195     {
4595 27 Sep 17 nicklas 196       Events.addEventHandler(clickableItems[i], 'click', hisat.fileLinkOnClick);
4595 27 Sep 17 nicklas 197     }
4595 27 Sep 17 nicklas 198
4620 16 Nov 17 nicklas 199     // Add click handler to VCF files
4620 16 Nov 17 nicklas 200     var clickableItems = document.getElementsByClassName('vcf-link');
4620 16 Nov 17 nicklas 201     for (var i = 0; i < clickableItems.length; i++)
4620 16 Nov 17 nicklas 202     {
4620 16 Nov 17 nicklas 203       Events.addEventHandler(clickableItems[i], 'click', hisat.vcfLinkOnClick);
4620 16 Nov 17 nicklas 204     }
4620 16 Nov 17 nicklas 205
4595 27 Sep 17 nicklas 206     Doc.show('step-1');
4595 27 Sep 17 nicklas 207     Doc.show('goregister');
4595 27 Sep 17 nicklas 208   }
4595 27 Sep 17 nicklas 209   
4595 27 Sep 17 nicklas 210   hisat.fileLinkOnClick = function(event)
4595 27 Sep 17 nicklas 211   {
4595 27 Sep 17 nicklas 212     var folder = Data.get(event.currentTarget, 'folder');
4595 27 Sep 17 nicklas 213     var server = Data.get(event.currentTarget, 'server');
4595 27 Sep 17 nicklas 214     var itemId = Data.get(event.currentTarget, 'item-id');
4595 27 Sep 17 nicklas 215     server = server.replace(/\s*\[.*\]/, '');
4595 27 Sep 17 nicklas 216     var url = 'view_remote_files.jsp?ID=' + App.getSessionId();
4595 27 Sep 17 nicklas 217     url += '&clusterId='+server;
4595 27 Sep 17 nicklas 218     url += '&path='+encodeURIComponent(folder);
4595 27 Sep 17 nicklas 219     url += '&itemType=DERIVEDBIOASSAY&itemId='+itemId;
4595 27 Sep 17 nicklas 220     Dialogs.openPopup(url, 'ViewProjectFiles', 750, 500);
4595 27 Sep 17 nicklas 221   }
4595 27 Sep 17 nicklas 222   
4620 16 Nov 17 nicklas 223   hisat.vcfLinkOnClick = function(event)
4620 16 Nov 17 nicklas 224   {
4620 16 Nov 17 nicklas 225     var fileId = Data.int(event.currentTarget, 'file-id');
4620 16 Nov 17 nicklas 226     var itemId = Data.get(event.currentTarget, 'item-id');
4620 16 Nov 17 nicklas 227
4620 16 Nov 17 nicklas 228     var url = 'view_genotypes.jsp?ID=' + App.getSessionId();
4620 16 Nov 17 nicklas 229     url += '&fileId='+fileId;
4620 16 Nov 17 nicklas 230     url += '&itemId='+itemId;
4620 16 Nov 17 nicklas 231     Dialogs.openPopup(url, 'ViewVcf', 750, 500);
4620 16 Nov 17 nicklas 232   }
4595 27 Sep 17 nicklas 233   
6670 07 Apr 22 nicklas 234   hisat.toggleSelection = function(event)
6670 07 Apr 22 nicklas 235   {
6670 07 Apr 22 nicklas 236     var prefix = Data.get(event.currentTarget, 'prefix');
6670 07 Apr 22 nicklas 237     var specialKey = event.altKey || event.ctrlKey || event.shiftKey;
6670 07 Apr 22 nicklas 238     
6670 07 Apr 22 nicklas 239     var frm = document.forms['reggie'];
6670 07 Apr 22 nicklas 240     for (var alignedNo = 0; alignedNo < alignedSequences.length; alignedNo++)
6670 07 Apr 22 nicklas 241     {
6670 07 Apr 22 nicklas 242       var aligned = alignedSequences[alignedNo];
6670 07 Apr 22 nicklas 243       var chk = frm[prefix+'.'+aligned.id];
6670 07 Apr 22 nicklas 244       if (chk && !chk.disabled)
6670 07 Apr 22 nicklas 245       {
6670 07 Apr 22 nicklas 246         chk.checked = specialKey ? false : !chk.checked;
6670 07 Apr 22 nicklas 247       }
6670 07 Apr 22 nicklas 248     }
6670 07 Apr 22 nicklas 249   }
6670 07 Apr 22 nicklas 250   
4595 27 Sep 17 nicklas 251   hisat.submit = function()
4595 27 Sep 17 nicklas 252   {
4595 27 Sep 17 nicklas 253     var frm = document.forms['reggie'];
4595 27 Sep 17 nicklas 254     var submitInfo = {};
4595 27 Sep 17 nicklas 255     submitInfo.deleteItemsCreatedByFailedJobs = frm.deleteItemsCreatedByFailedJobs.checked;
4595 27 Sep 17 nicklas 256     
4595 27 Sep 17 nicklas 257     var all = [];
4595 27 Sep 17 nicklas 258     submitInfo.alignedSequences = all;
4595 27 Sep 17 nicklas 259     for (var alignedNo = 0; alignedNo < alignedSequences.length; alignedNo++)
4595 27 Sep 17 nicklas 260     {
4595 27 Sep 17 nicklas 261       var aligned = alignedSequences[alignedNo];
4595 27 Sep 17 nicklas 262       var tmp = {};
4595 27 Sep 17 nicklas 263       tmp.id = aligned.id;
4595 27 Sep 17 nicklas 264       
4658 26 Jan 18 nicklas 265       tmp.flag = frm['flag.'+aligned.id] && frm['flag.'+aligned.id].checked ? frm['flag.'+aligned.id].value : null;
4595 27 Sep 17 nicklas 266       tmp.realign = frm['realign.'+aligned.id].checked;
4660 29 Jan 18 nicklas 267       tmp.stringtie = frm['stringtie.'+aligned.id].checked;
4595 27 Sep 17 nicklas 268       tmp.comment = frm['comment.'+aligned.id].value;
4595 27 Sep 17 nicklas 269       
4595 27 Sep 17 nicklas 270       all[all.length] = tmp;
4595 27 Sep 17 nicklas 271     }
4595 27 Sep 17 nicklas 272     
4595 27 Sep 17 nicklas 273     var url = '../Hisat.servlet?ID='+App.getSessionId();
4595 27 Sep 17 nicklas 274     url += '&cmd=RegisterHisatAlignment';
4595 27 Sep 17 nicklas 275     Wizard.showLoadingAnimation('Performing registration...');
4595 27 Sep 17 nicklas 276     Wizard.asyncJsonRequest(url, hisat.submissionResults, 'POST', JSON.stringify(submitInfo));
4595 27 Sep 17 nicklas 277   }
4595 27 Sep 17 nicklas 278   
4595 27 Sep 17 nicklas 279   hisat.submissionResults = function(response)
4595 27 Sep 17 nicklas 280   {
4595 27 Sep 17 nicklas 281     Wizard.showFinalMessage(response.messages);
4595 27 Sep 17 nicklas 282     Doc.show('gorestart');
4595 27 Sep 17 nicklas 283   }
4595 27 Sep 17 nicklas 284   
4595 27 Sep 17 nicklas 285   
4595 27 Sep 17 nicklas 286   return hisat;
4595 27 Sep 17 nicklas 287 }();
4595 27 Sep 17 nicklas 288
4595 27 Sep 17 nicklas 289 Doc.onLoad(Hisat.initPage);
4595 27 Sep 17 nicklas 290