class Bio::Fastq::Error::Seq_char

Error::Seq_char – invalid character in the sequence

Private Instance Methods

default_message(i) click to toggle source

default error message for this exception

# File lib/bio/db/fastq.rb, line 293
def default_message(i)
  pos = i ? " at [#{i}]" : ''
  "invalid character in the sequence#{pos}"
end