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
293 def default_message(i)
294   pos = i ? " at [#{i}]" : ''
295   "invalid character in the sequence#{pos}"
296 end