diff test-data/dreme_output_test2.html @ 7:47e7ae719765 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:19:24 +0000
parents 5f95d385a33c
children
line wrap: on
line diff
--- a/test-data/dreme_output_test2.html	Sat Apr 09 08:33:29 2022 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,50 +0,0 @@
-      <h4>Other Settings</h4>
-      <table id="tbl_settings" class="inputs hide_advanced">
-        <tr>
-          <th>Strand Handling</th>
-          <td id="opt_strand">
-            <span class="strand_none">This alphabet only has one strand</span>
-            <span class="strand_given">Only the given strand is processed</span>
-            <span class="strand_both">Both the given and reverse complement strands are processed</span>
-          </td>
-        </tr>
-        <tr><th># REs to Generalize</th><td id="opt_ngen"></td></tr>
-        <tr><th>Shuffle Seed</th><td id="opt_seed"></td></tr>
-        <tr><th>E-value Threshold</th><td id="opt_stop_evalue"></td></tr>
-        <tr><th>Max Motif Count</th><td id="opt_stop_count"></td></tr>
-        <tr><th>Max Run Time</th><td id="opt_stop_time"></td></tr>
-      </table>
-      <script>
-      {
-        $("opt_strand").className = (current_alphabet.has_complement() ? (data.options.revcomp ? "both" : "given") : "none");
-        $("opt_ngen").innerHTML = data.options.ngen;
-        $("opt_seed").innerHTML = data.options.seed;
-        $("opt_stop_evalue").innerHTML = data.options.stop.evalue;
-        $("opt_stop_count").innerHTML = (typeof data.options.stop.count == "number" ? data.options.stop.count : "No maximum motif count.");
-        $("opt_stop_time").innerHTML = (typeof data.options.stop.time == "number" ? data.options.stop.time + " seconds." : "No maximum running time.");
-      }
-      </script>
-    </div>
-    <!-- list information on this program -->
-    <div id="info_sec" class="bar" style="position:relative">
-      <div style="position: absolute; right: 0;"><a href="#inputs_sec">Previous</a> <a href="#">Top</a></div>
-      <div class="subsection">
-        <h5 id="version">DREME version</h5>
-        <span id="ins_version"></span> 
-        (Release date: <span id="ins_release"></span>)<br>
-      </div>
-      <script>
-        $("ins_version").innerHTML = data["version"];
-        $("ins_release").innerHTML = data["release"];
-      </script>
-      <div class="subsection" id="reference"> <script>print_citation("reference", "DREME");</script> </div>
-      <div class="subsection">
-        <h5 id="command">Command line</h5>
-        <textarea id="cmd" rows="3" style="width:100%;" readonly="readonly">
-        </textarea>
-        <script>$("cmd").value = data["cmd"].join(" ");</script>
-      </div>
-    </div>
-    
-  </body>
-</html>