Skip to content

Commit

Permalink
fix equate IL
Browse files Browse the repository at this point in the history
  • Loading branch information
tibvdm committed Apr 16, 2024
1 parent 6c36d59 commit 581667b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/mpa/pept2data_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ class Mpa::Pept2dataController < Mpa::MpaController

def pept2data
peptides = params[:peptides] || []
missed = params[:missed].nil? ? false || params[:missed]
missed = params[:missed].nil? ? false : params[:missed]
equate_il = params[:equate_il].nil? ? true : params[:equate_il]

@response = Hash.new
Expand Down

0 comments on commit 581667b

Please sign in to comment.