class SequenceServer::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/sequenceserver/exceptions.rb, line 144 def initialize(cmd, out) @cmd = cmd @out = out end
Public Instance Methods
to_s()
click to toggle source
# File lib/sequenceserver/exceptions.rb, line 151 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/sequenceserver'? MSG end