class GeneValidatorApp::BLAST_DATABASE_ERROR

Raised if there was an error determining BLAST+ databases in database_dir.

Attributes

cmd[R]
out[R]

Public Class Methods

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

Public Instance Methods

to_s() click to toggle source
# File lib/genevalidatorapp/exceptions.rb, line 173
    def to_s
      <<MSG
Error obtaining BLAST databases.
Tried: #{cmd}
Error:
#{out.strip}

Please could you report this to 'https://groups.google.com/forum/#!forum/GV'?
MSG
    end