-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed pcr_cycles column from customer file download after uat feedback
- Loading branch information
1 parent
a50587b
commit f0d1119
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
app/views/exports/targeted_nanoseq_al_lib_concentrations_for_customer.csv.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<%= CSV.generate_line ['Plate Barcode', @plate.labware_barcode.human], row_sep: "" %> | ||
|
||
<%= CSV.generate_line ['Well', 'Concentration (nM)', 'Sanger Sample Id', 'Supplier Sample Name', 'Input amount available (fmol)', 'Input amount desired', 'Sample volume', 'Diluent volume', 'PCR cycles', 'Hyb Panel'], row_sep: "" %> | ||
<%= CSV.generate_line ['Well', 'Concentration (nM)', 'Sanger Sample Id', 'Supplier Sample Name', 'Input amount available (fmol)', 'Input amount desired', 'Sample volume', 'Diluent volume', 'Hyb Panel'], row_sep: "" %> | ||
<% @plate.wells_in_columns.each do |well| %> | ||
<% unless well.empty? %> | ||
<%= CSV.generate_line [well.location, well.latest_molarity&.value, well.sanger_sample_id, well.supplier_name, well.input_amount_available, nil, nil, nil, nil, nil], row_sep: "" %> | ||
<%= CSV.generate_line [well.location, well.latest_molarity&.value, well.sanger_sample_id, well.supplier_name, well.input_amount_available, nil, nil, nil, nil], row_sep: "" %> | ||
<% end %> | ||
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters