Skip to content

Commit

Permalink
Reduce errors in extremely rare cases
Browse files Browse the repository at this point in the history
  • Loading branch information
lmrodriguezr committed Mar 15, 2024
1 parent 3120bd9 commit da27eed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/miga/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ module MiGA
# - String indicating release status:
# - rc* release candidate, not released as gem
# - [0-9]+ stable release, released as gem
VERSION = [1.3, 13, 1].freeze
VERSION = [1.3, 13, 2].freeze

##
# Nickname for the current major.minor version.
VERSION_NAME = 'mezzotint'

##
# Date of the current gem relese.
VERSION_DATE = Date.new(2024, 3, 11)
VERSION_DATE = Date.new(2024, 3, 15)

##
# References of MiGA
Expand Down
2 changes: 1 addition & 1 deletion utils/distance/commands.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def aai(targets)
# Launch comparisons
pending_targets(targets, :aai).each do |target|
# Full AAI
target_cds = target.result(:cds).file_path(:proteins) or next
target_cds = target.result(:cds)&.file_path(:proteins) or next
aairb_cmd(
tmp_file('proteins.fa'), target_cds,
dataset.name, target.name, tmp_dbs[:aai], checkpoint: :aai
Expand Down

0 comments on commit da27eed

Please sign in to comment.