class GeneValidatorApp::NO_BLAST_DATABASE_FOUND
Raised if not even one 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 140 def initialize(database_dir) @database_dir = database_dir end
Public Instance Methods
to_s()
click to toggle source
# File lib/genevalidatorapp/exceptions.rb, line 146 def to_s "Could not find BLAST+ databases in: #{database_dir}." end