Exception: GeneValidatorApp::BLAST_NOT_COMPATIBLE

Inherits:
StandardError
  • Object
show all
Defined in:
lib/genevalidatorapp/exceptions.rb

Overview

Raised if SequenceServer determined NCBI BLAST+ present on the user’s system but not meeting SequenceServer’s minimum version requirement.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ BLAST_NOT_COMPATIBLE

Returns a new instance of BLAST_NOT_COMPATIBLE.



106
107
108
# File 'lib/genevalidatorapp/exceptions.rb', line 106

def initialize(version)
  @version  = version
end

Instance Attribute Details

#versionObject (readonly)

Returns the value of attribute version.



110
111
112
# File 'lib/genevalidatorapp/exceptions.rb', line 110

def version
  @version
end

Instance Method Details

#to_sObject



112
113
114
115
116
117
# File 'lib/genevalidatorapp/exceptions.rb', line 112

def to_s
  <<MSG
Your BLAST+ version #{version} is outdated.
SequenceServer needs NCBI BLAST+ version #{MINIMUM_BLAST_VERSION} or higher.
MSG
end