Exception: GeneValidatorApp::BLAST_NOT_COMPATIBLE
- Inherits:
-
StandardError
- Object
- StandardError
- GeneValidatorApp::BLAST_NOT_COMPATIBLE
- Defined in:
- lib/genevalidatorapp/exceptions.rb
Overview
Raised if GV determined NCBI BLAST+ present on the user’s system but not meeting GV’s minimum version requirement.
Instance Attribute Summary collapse
-
#version ⇒ Object
readonly
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(version) ⇒ BLAST_NOT_COMPATIBLE
constructor
A new instance of BLAST_NOT_COMPATIBLE.
- #to_s ⇒ Object
Constructor Details
#initialize(version) ⇒ BLAST_NOT_COMPATIBLE
Returns a new instance of BLAST_NOT_COMPATIBLE.
115 116 117 |
# File 'lib/genevalidatorapp/exceptions.rb', line 115 def initialize(version) @version = version end |
Instance Attribute Details
#version ⇒ Object (readonly)
Returns the value of attribute version.
119 120 121 |
# File 'lib/genevalidatorapp/exceptions.rb', line 119 def version @version end |
Instance Method Details
#to_s ⇒ Object
121 122 123 124 125 126 |
# File 'lib/genevalidatorapp/exceptions.rb', line 121 def to_s <<MSG Your BLAST+ version #{version} is outdated. GV needs NCBI BLAST+ version #{MINIMUM_BLAST_VERSION} or higher. MSG end |