Sha256: 9026fe50c6f6b5e3f580d5e22306ab797717421fbf2c80d1ca37150a00b4e271

Contents?: true

Size: 1.71 KB

Versions: 7

Compression:

Stored size: 1.71 KB

Contents

<%= f.fields_for :blastn_job do |n| %>
  <p>
    <strong>blastn</strong>
    <%= n.check_box :queue %>
  </p>
  <div id="blastn" class="toggle">
    <table class="options">
      <tr>
        <td>
          <label>Database(s)</label>
        </td>
        <td>
          <%= n.select :blast_dbs, @blast_dbs[:blastn], {}, { :multiple => true } %>
        </td>
        <td>
          <%= n.label :filter, "DUST" %>
        </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/_blastn_form.html.erb
quorum-0.5.1 app/views/quorum/jobs/form/_blastn_form.html.erb
quorum-0.5.0 app/views/quorum/jobs/form/_blastn_form.html.erb
quorum-0.4.0 app/views/quorum/jobs/form/_blastn_form.html.erb
quorum-0.3.3 app/views/quorum/jobs/form/_blastn_form.html.erb
quorum-0.3.2 app/views/quorum/jobs/form/_blastn_form.html.erb
quorum-0.3.1 app/views/quorum/jobs/form/_blastn_form.html.erb