class GeneValidatorApp::BLAST_NOT_COMPATIBLE

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

Attributes

version[R]

Public Class Methods

new(version) click to toggle source
# File lib/genevalidatorapp/exceptions.rb, line 115
def initialize(version)
  @version = version
end

Public Instance Methods

to_s() click to toggle source
# 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