class GeneValidatorApp::NO_PROTEIN_BLAST_DATABASE_FOUND

Raised if no protein BLAST+ database was found in database_dir.

Attributes

database_dir[R]

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/genevalidatorapp/exceptions.rb, line 159
def to_s
  "Could not find any Protein BLAST+ databases in: #{database_dir}."
end