Mercurial > repos > iuc > meme_fimo
comparison test-data/dreme_output_test2.html @ 19:bd14d35f004d draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meme commit 93fe7345e2b6a97000975d978bf06513b3a442d9
| author | iuc |
|---|---|
| date | Thu, 29 Aug 2024 10:18:35 +0000 |
| parents | 6f68fb7ef9f0 |
| children |
comparison
equal
deleted
inserted
replaced
| 18:6f68fb7ef9f0 | 19:bd14d35f004d |
|---|---|
| 1 <h4>Other Settings</h4> | |
| 2 <table id="tbl_settings" class="inputs hide_advanced"> | |
| 3 <tr> | |
| 4 <th>Strand Handling</th> | |
| 5 <td id="opt_strand"> | |
| 6 <span class="strand_none">This alphabet only has one strand</span> | |
| 7 <span class="strand_given">Only the given strand is processed</span> | |
| 8 <span class="strand_both">Both the given and reverse complement strands are processed</span> | |
| 9 </td> | |
| 10 </tr> | |
| 11 <tr><th># REs to Generalize</th><td id="opt_ngen"></td></tr> | |
| 12 <tr><th>Shuffle Seed</th><td id="opt_seed"></td></tr> | |
| 13 <tr><th>E-value Threshold</th><td id="opt_stop_evalue"></td></tr> | |
| 14 <tr><th>Max Motif Count</th><td id="opt_stop_count"></td></tr> | |
| 15 <tr><th>Max Run Time</th><td id="opt_stop_time"></td></tr> | |
| 16 </table> | |
| 17 <script> | |
| 18 { | |
| 19 $("opt_strand").className = (current_alphabet.has_complement() ? (data.options.revcomp ? "both" : "given") : "none"); | |
| 20 $("opt_ngen").innerHTML = data.options.ngen; | |
| 21 $("opt_seed").innerHTML = data.options.seed; | |
| 22 $("opt_stop_evalue").innerHTML = data.options.stop.evalue; | |
| 23 $("opt_stop_count").innerHTML = (typeof data.options.stop.count == "number" ? data.options.stop.count : "No maximum motif count."); | |
| 24 $("opt_stop_time").innerHTML = (typeof data.options.stop.time == "number" ? data.options.stop.time + " seconds." : "No maximum running time."); | |
| 25 } | |
| 26 </script> | |
| 27 </div> | |
| 28 <!-- list information on this program --> | |
| 29 <div id="info_sec" class="bar" style="position:relative"> | |
| 30 <div style="position: absolute; right: 0;"><a href="#inputs_sec">Previous</a> <a href="#">Top</a></div> | |
| 31 <div class="subsection"> | |
| 32 <h5 id="version">DREME version</h5> | |
| 33 <span id="ins_version"></span> | |
| 34 (Release date: <span id="ins_release"></span>)<br> | |
| 35 </div> | |
| 36 <script> | |
| 37 $("ins_version").innerHTML = data["version"]; | |
| 38 $("ins_release").innerHTML = data["release"]; | |
| 39 </script> | |
| 40 <div class="subsection" id="reference"> <script>print_citation("reference", "DREME");</script> </div> | |
| 41 <div class="subsection"> | |
| 42 <h5 id="command">Command line</h5> | |
| 43 <textarea id="cmd" rows="3" style="width:100%;" readonly="readonly"> | |
| 44 </textarea> | |
| 45 <script>$("cmd").value = data["cmd"].join(" ");</script> | |
| 46 </div> | |
| 47 </div> | |
| 48 | |
| 49 </body> | |
| 50 </html> |
