Editing Sequencing Run

<%= error_messages_for :sequencing_run %> <% form_for(@sequencing_run) do |f| %>


<%= f.date_select 'date' %>


<%= f.collection_select 'flow_cell_id', @flow_cells, :id, :name %>


<%= f.collection_select 'instrument_id', @instruments, :id, :name_with_version %>


<%= f.text_field :comment %>


<%= f.check_box :best %>

<%= f.submit "Update" %>

<% end %> <%= link_to 'Back', sequencing_runs_path %>