class SequenceServer::BLAST_NOT_COMPATIBLE

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

Attributes

version[R]

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/sequenceserver/exceptions.rb, line 86
    def to_s
      <<~MSG
        Your BLAST+ version #{version} is incompatible.
        SequenceServer needs NCBI BLAST+ version #{BLAST_VERSION}.
      MSG
    end