Skip to content

Commit

Permalink
make variable names more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
KatyTaylor committed Mar 11, 2024
1 parent 3f029c1 commit b2dcbf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/sample_manifest/generate_wells_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Struct.new(:sample_manifest_id, :map_ids_to_sanger_sample_ids, :plate_id) do
def perform
ActiveRecord::Base.transaction do
map_ids_to_sanger_sample_ids.each { |k, v| create_well(k, v) }
map_ids_to_sanger_sample_ids.each { |map_id, sanger_sample_id| create_well(map_id, sanger_sample_id) }

RequestFactory.create_assets_requests(plate.wells, sample_manifest.study)

Expand Down

0 comments on commit b2dcbf0

Please sign in to comment.