Sha256: d208077e88392147ec624cf08be818e6adf9f203292c6fa1be5378885ae57fcd

Contents?: true

Size: 1.72 KB

Versions: 7

Compression:

Stored size: 1.72 KB

Contents

<%= f.fields_for :tblastn_job do |n| %>
  <p>
    <strong>tblastn</strong>
    <%= n.check_box :queue %>
  </p>
  <div id="tblastn" class="toggle">
    <table class="options">
      <tr>
        <td>
          <label>Database(s)</label>
        </td>
        <td>
          <%= n.select :blast_dbs, @blast_dbs[:tblastn], {}, { :multiple => true } %>
        </td>
        <td>
          <%= n.label :filter, "SEG" %>
        </td>
        <td>
          <%= n.check_box :filter %>
        </td>
      </tr>
      <tr>
        <td>
          <%= n.label :expectation %>
        </td>
        <td>
          <%= n.text_field :expectation, :size => 15, :title => "5e-20",
            :class => "auto-hint" %>
        </td>
        <td>
          <%= n.label :min_bit_score %>
        </td>
        <td>
          <%= n.text_field :min_bit_score, :size => 15, :title => "0",
            :class => "auto-hint" %>
        </td>
      </tr>
      <tr>
        <td>
           <%= n.label :max_score %>
        </td>
        <td>
          <%= n.text_field :max_score, :size => 15, :title => "25",
            :class => "auto-hint" %>
        </td>
        <td>
          <%= n.label :gapped_alignments %>
        </td>
        <td>
          <%= n.select :gapped_alignments, [['No', false], ['Yes', true]] %>
        </td>
      </tr>
      <tr>
        <td>
          <%= n.label :gap_opening_extension %>
        </td>
        <td>
          <%=
            n.select :gap_opening_extension,
              options_for_select(
                @job.blastn_job.gap_opening_extension_values,
                @job.blastn_job.gap_opening_extension
            )
          %>
        </td>
        <td></td>
        <td></td>
      </tr>
    </table>
  </div>
<% end %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
quorum-0.5.2 app/views/quorum/jobs/form/_tblastn_form.html.erb
quorum-0.5.1 app/views/quorum/jobs/form/_tblastn_form.html.erb
quorum-0.5.0 app/views/quorum/jobs/form/_tblastn_form.html.erb
quorum-0.4.0 app/views/quorum/jobs/form/_tblastn_form.html.erb
quorum-0.3.3 app/views/quorum/jobs/form/_tblastn_form.html.erb
quorum-0.3.2 app/views/quorum/jobs/form/_tblastn_form.html.erb
quorum-0.3.1 app/views/quorum/jobs/form/_tblastn_form.html.erb